-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTOWebViewController.m
executable file
·1660 lines (1379 loc) · 70.7 KB
/
TOWebViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// TOWebViewController.m
//
// Copyright 2014 Timothy Oliver. All rights reserved.
//
// Features logic designed by Satoshi Asano (ninjinkun) for NJKWebViewProgress,
// also licensed under the MIT License. Re-implemented by Timothy Oliver.
// https://github.com/ninjinkun/NJKWebViewProgress
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
// IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import "TOWebViewController.h"
#import "TOActivitySafari.h"
#import "TOActivityChrome.h"
#import "UIImage+TOWebViewControllerIcons.h"
#import <QuartzCore/QuartzCore.h>
#import <MessageUI/MessageUI.h>
#import <MessageUI/MFMailComposeViewController.h>
#import <MessageUI/MFMessageComposeViewController.h>
#import <Twitter/Twitter.h>
/* Detect if we're running iOS 7.0 or higher */
#ifndef NSFoundationVersionNumber_iOS_6_1
#define NSFoundationVersionNumber_iOS_6_1 993.00
#endif
#define MINIMAL_UI (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1)
/* The default blue tint color of iOS 7.0 */
#define DEFAULT_BAR_TINT_COLOR [UIColor colorWithRed:0.0f green:110.0f/255.0f blue:1.0f alpha:1.0f]
/* Detect which user idiom we're running on */
#define IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
/* Blank UIBarButtonItem creation */
#define BLANK_BARBUTTONITEM [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil]
/* View Controller Theming Properties */
#define BACKGROUND_COLOR_MINIMAL [UIColor colorWithRed:0.741f green:0.741 blue:0.76f alpha:1.0f]
#define BACKGROUND_COLOR_CLASSIC [UIColor scrollViewTexturedBackgroundColor]
#define BACKGROUND_COLOR ((MINIMAL_UI) ? BACKGROUND_COLOR_MINIMAL : BACKGROUND_COLOR_CLASSIC)
/* Navigation Bar Properties */
#define NAVIGATION_BUTTON_WIDTH 31
#define NAVIGATION_BUTTON_SIZE CGSizeMake(31,31)
#define NAVIGATION_BUTTON_SPACING 40
#define NAVIGATION_BUTTON_SPACING_IPAD 20
#define NAVIGATION_BAR_HEIGHT (MINIMAL_UI ? 64.0f : 44.0f)
#define NAVIGATION_TOGGLE_ANIM_TIME 0.3
/* Toolbar Properties */
#define TOOLBAR_HEIGHT 44.0f
/* Hieght of the loading progress bar view */
#define LOADING_BAR_HEIGHT 2
/* Unique URL triggered when JavaScript reports page load is complete */
NSString *kCompleteRPCURL = @"webviewprogress:///complete";
/* Default load values to defer to during the load process */
static const float kInitialProgressValue = 0.1f;
static const float kBeforeInteractiveMaxProgressValue = 0.5f;
static const float kAfterInteractiveMaxProgressValue = 0.9f;
#pragma mark -
#pragma mark Loading Bar Private Interface
@interface TOWebLoadingView : UIView
@end
@implementation TOWebLoadingView
- (void)tintColorDidChange { self.backgroundColor = self.tintColor; }
@end
#pragma mark -
#pragma mark Hidden Properties/Methods
@interface TOWebViewController () <UIWebViewDelegate, UIActionSheetDelegate,
UIPopoverControllerDelegate,
MFMailComposeViewControllerDelegate,
MFMessageComposeViewControllerDelegate>
{
//The state of the UIWebView's scroll view before the rotation animation has started
struct {
CGSize frameSize;
CGSize contentSize;
CGPoint contentOffset;
CGFloat zoomScale;
CGFloat minimumZoomScale;
CGFloat maximumZoomScale;
CGFloat topEdgeInset;
CGFloat bottomEdgeInset;
} _webViewState;
//State tracking for load progress of current page
struct {
NSInteger loadingCount; //Number of requests concurrently being handled
NSInteger maxLoadCount; //Maximum number of load requests that was reached
BOOL interactive; //Load progress has reached the point where users may interact with the content
CGFloat loadingProgress; //Between 0.0 and 1.0, the load progress of the current page
} _loadingProgressState;
}
/* View controller presentation state tracking */
@property (nonatomic,readonly) BOOL beingPresentedModally; /* The controller was presented as a modal popup (eg, 'Done' button) */
@property (nonatomic,readonly) BOOL onTopOfNavigationControllerStack; /* We're in, and not the root of a UINavigationController (eg, 'Back' button)*/
/* The main view components of the controller */
@property (nonatomic,readonly) UINavigationBar *navigationBar; /* Navigation bar shown along the top of the view */
@property (nonatomic,readonly) UIToolbar *toolbar; /* Toolbar shown along the bottom */
@property (nonatomic,strong) UIWebView *webView; /* The web view, where all the magic happens */
@property (nonatomic,strong) TOWebLoadingView *loadingBarView; /* The loading bar, displayed when a page is being loaded */
@property (nonatomic,strong) UIImageView *webViewRotationSnapshot; /* A snapshot of the web view, shown when rotating */
@property (nonatomic,strong) CAGradientLayer *gradientLayer; /* Gradient effect for the background view behind the web view. */
/* Navigation Buttons */
@property (nonatomic,strong) UIButton *backButton; /* Moves the web view one page back */
@property (nonatomic,strong) UIButton *forwardButton; /* Moves the web view one page forward */
@property (nonatomic,strong) UIButton *reloadStopButton; /* Reload / Stop buttons */
@property (nonatomic,strong) UIButton *actionButton; /* Shows the UIActivityViewController */
/* Button placement metrics */
@property (nonatomic,assign) CGFloat buttonWidth; /* The size of each button */
@property (nonatomic,assign) CGFloat buttonSpacing; /* The size of the gap between each button */
/* Images for the Reload/Stop button */
@property (nonatomic,strong) UIImage *reloadIcon;
@property (nonatomic,strong) UIImage *stopIcon;
/* Theming attributes for generating navigation button art. */
@property (nonatomic,strong) NSMutableDictionary *buttonThemeAttributes;
/* Popover View Controller Handlers */
@property (nonatomic,strong) UIPopoverController *sharingPopoverController;
/* See if we need to revert the toolbar to 'hidden' when we pop off a navigation controller. */
@property (nonatomic,assign) BOOL hideToolbarOnClose;
/* See if we need to revert the navigation bar to 'hidden' when we pop from a navigation controller */
@property (nonatomic,assign) BOOL hideNavBarOnClose;
/* Perform all common setup steps */
- (void)setup;
- (NSURL *)cleanURL:(NSURL *)url;
/* Init and configure various sections of the controller */
- (void)setUpNavigationButtons;
- (UIView *)containerViewWithNavigationButtons;
/* Review the current state of the web view and update the UI controls in the nav bar to match it */
- (void)refreshButtonsState;
/* Event callbacks for button taps */
- (void)backButtonTapped:(id)sender;
- (void)forwardButtonTapped:(id)sender;
- (void)reloadStopButtonTapped:(id)sender;
- (void)actionButtonTapped:(id)sender;
- (void)doneButtonTapped:(id)sender;
/* Event handlers for items in the 'action' popup */
- (void)copyURLToClipboard;
- (void)openInBrowser;
- (void)openMailDialog;
- (void)openMessageDialog;
- (void)openTwitterDialog;
/* Methods related to tracking load progress of current page */
- (void)resetLoadProgress;
- (void)startLoadProgress;
- (void)incrementLoadProgress;
- (void)finishLoadProgress;
- (void)setLoadingProgress:(CGFloat)loadingProgress;
- (void)handleLoadRequestCompletion; //Called each time a request successfully (or unsuccessfully) ends
/* Methods to contain all of the functionality needed to properly animate the UIWebView rotating */
- (CGRect)rectForVisibleRegionOfWebViewAnimatingToOrientation:(UIInterfaceOrientation)toInterfaceOrientation;
- (void)setUpWebViewForRotationToOrientation:(UIInterfaceOrientation)toOrientation withDuration:(NSTimeInterval)duration;
- (void)animateWebViewRotationToOrientation:(UIInterfaceOrientation)toOrientation withDuration:(NSTimeInterval)duration;
- (void)restoreWebViewFromRotationFromOrientation:(UIInterfaceOrientation)fromOrientation;
/* Methods to derive state information from the web view */
- (UIView *)webViewContentView; //pull out the actual UIView used to display the web content so we can render a snapshot from it
- (BOOL)webViewPageWidthIsDynamic; //The page will rescale its own content if the web view frame is changed (ie DON'T play a zooming animation)
- (UIColor *)webViewPageBackgroundColor; //try and determine the background colour of the current page
@end
// -------------------------------------------------------
#pragma mark -
#pragma mark Class Implementation
@implementation TOWebViewController
- (instancetype)init
{
if (self = [super init])
[self setup];
return self;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
if (self = [super initWithCoder:aDecoder])
[self setup];
return self;
}
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])
[self setup];
return self;
}
- (instancetype)initWithURL:(NSURL *)url
{
if (self = [self init])
_url = [self cleanURL:url];
return self;
}
- (instancetype)initWithURLString:(NSString *)urlString
{
return [self initWithURL:[NSURL URLWithString:urlString]];
}
- (NSURL *)cleanURL:(NSURL *)url
{
//If no URL scheme was supplied, defer back to HTTP.
if (url.scheme.length == 0) {
url = [NSURL URLWithString:[NSString stringWithFormat:@"http://%@", [url absoluteString]]];
}
return url;
}
- (void)setup
{
//Direct ivar reference since we don't want to trigger their actions yet
_showActionButton = YES;
_buttonSpacing = (IPAD == NO) ? NAVIGATION_BUTTON_SPACING : NAVIGATION_BUTTON_SPACING_IPAD;
_buttonWidth = NAVIGATION_BUTTON_WIDTH;
_showLoadingBar = YES;
_showUrlWhileLoading = YES;
//Set the initial default style as full screen (But this can be easily overwritten)
self.modalPresentationStyle = UIModalPresentationFullScreen;
}
- (void)loadView
{
//Create the all-encompassing container view
UIView *view = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
view.backgroundColor = (self.hideWebViewBoundaries ? [UIColor whiteColor] : BACKGROUND_COLOR);
#pragma clang diagnostic pop
view.opaque = YES;
view.clipsToBounds = YES;
self.view = view;
//create and add the detail gradient to the background view
if (MINIMAL_UI == NO) {
self.gradientLayer = [CAGradientLayer layer];
self.gradientLayer.colors = @[(id)[[UIColor colorWithWhite:0.0f alpha:0.0f] CGColor],(id)[[UIColor colorWithWhite:0.0f alpha:0.35f] CGColor]];
self.gradientLayer.frame = self.view.bounds;
[self.view.layer addSublayer:self.gradientLayer];
}
//Create the web view
self.webView = [[UIWebView alloc] initWithFrame:self.view.bounds];
self.webView.delegate = self;
self.webView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
self.webView.backgroundColor = [UIColor clearColor];
self.webView.scalesPageToFit = YES;
self.webView.contentMode = UIViewContentModeRedraw;
self.webView.opaque = YES;
[self.view addSubview:self.webView];
//Set up the loading bar
CGFloat y = self.webView.scrollView.contentInset.top;
self.loadingBarView = [[TOWebLoadingView alloc] initWithFrame:CGRectMake(0, y, CGRectGetWidth(self.view.frame), LOADING_BAR_HEIGHT)];
self.loadingBarView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
//set the tint color for the loading bar
if (MINIMAL_UI && self.loadingBarTintColor == nil) {
if (self.navigationController && self.navigationController.view.window.tintColor)
self.loadingBarView.backgroundColor = self.navigationController.view.window.tintColor;
else if (self.view.window.tintColor)
self.loadingBarView.backgroundColor = self.view.window.tintColor;
else
self.loadingBarView.backgroundColor = DEFAULT_BAR_TINT_COLOR;
}
else if (self.loadingBarTintColor)
self.loadingBarView.backgroundColor = self.loadingBarTintColor;
else
self.loadingBarView.backgroundColor = DEFAULT_BAR_TINT_COLOR;
//set up a subtle gradient to add over the loading bar
if (MINIMAL_UI == NO) {
CAGradientLayer *loadingBarGradientLayer = [CAGradientLayer layer];
loadingBarGradientLayer.colors = @[(id)[[UIColor colorWithWhite:0.0f alpha:0.25f] CGColor],(id)[[UIColor colorWithWhite:0.0f alpha:0.0f] CGColor]];
loadingBarGradientLayer.frame = self.loadingBarView.bounds;
[self.loadingBarView.layer addSublayer:loadingBarGradientLayer];
}
//only load the buttons if we need to
if (self.navigationButtonsHidden == NO)
[self setUpNavigationButtons];
}
- (void)setUpNavigationButtons
{
//set up the buttons for the navigation bar
CGRect buttonFrame = CGRectZero; buttonFrame.size = NAVIGATION_BUTTON_SIZE;
UIButtonType buttonType = UIButtonTypeCustom;
if (MINIMAL_UI)
buttonType = UIButtonTypeSystem;
//set up the back button
UIImage *backButtonImage = [UIImage TOWebViewControllerIcon_backButtonWithAttributes:self.buttonThemeAttributes];
if (self.backButton == nil) {
self.backButton = [UIButton buttonWithType:buttonType];
[self.backButton setFrame:buttonFrame];
[self.backButton setShowsTouchWhenHighlighted:YES];
}
[self.backButton setImage:backButtonImage forState:UIControlStateNormal];
//set up the forward button (Don't worry about the frame at this point as it will be hidden by default)
UIImage *forwardButtonImage = [UIImage TOWebViewControllerIcon_forwardButtonWithAttributes:self.buttonThemeAttributes];
if (self.forwardButton == nil) {
self.forwardButton = [UIButton buttonWithType:buttonType];
[self.forwardButton setFrame:buttonFrame];
[self.forwardButton setShowsTouchWhenHighlighted:YES];
}
[self.forwardButton setImage:forwardButtonImage forState:UIControlStateNormal];
//set up the reload button
if (self.reloadStopButton == nil) {
self.reloadStopButton = [UIButton buttonWithType:buttonType];
[self.reloadStopButton setFrame:buttonFrame];
[self.reloadStopButton setShowsTouchWhenHighlighted:YES];
}
self.reloadIcon = [UIImage TOWebViewControllerIcon_refreshButtonWithAttributes:self.buttonThemeAttributes];
self.stopIcon = [UIImage TOWebViewControllerIcon_stopButtonWithAttributes:self.buttonThemeAttributes];
[self.reloadStopButton setImage:self.reloadIcon forState:UIControlStateNormal];
//if desired, show the action button
if (self.showActionButton) {
if (self.actionButton == nil) {
self.actionButton = [UIButton buttonWithType:buttonType];
[self.actionButton setFrame:buttonFrame];
[self.actionButton setShowsTouchWhenHighlighted:YES];
}
[self.actionButton setImage:[UIImage TOWebViewControllerIcon_actionButtonWithAttributes:self.buttonThemeAttributes] forState:UIControlStateNormal];
}
}
- (UIView *)containerViewWithNavigationButtons
{
CGRect buttonFrame = CGRectZero;
buttonFrame.size = NAVIGATION_BUTTON_SIZE;
CGFloat width = (self.buttonWidth*3)+(self.buttonSpacing*2);
if (self.showActionButton)
width = (self.buttonWidth*4)+(self.buttonSpacing*3);
//set up the icons for the navigation bar
UIView *iconsContainerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, width, self.buttonWidth)];
iconsContainerView.backgroundColor = [UIColor clearColor];
//add the back button
self.backButton.frame = buttonFrame;
[iconsContainerView addSubview:self.backButton];
//add the forward button too, but keep it hidden for now
buttonFrame.origin.x = self.buttonWidth + self.buttonSpacing;
self.forwardButton.frame = buttonFrame;
[iconsContainerView addSubview:self.forwardButton];
buttonFrame.origin.x += (self.buttonWidth + self.buttonSpacing);
//add the reload button if the action button is hidden
self.reloadStopButton.frame = buttonFrame;
[iconsContainerView addSubview:self.reloadStopButton];
buttonFrame.origin.x += (self.buttonWidth + self.buttonSpacing);
//add the action button
if (self.showActionButton) {
self.actionButton.frame = buttonFrame;
[iconsContainerView addSubview:self.actionButton];
}
return iconsContainerView;
}
- (void)viewDidLoad
{
[super viewDidLoad];
//remove the shadow that lines the bottom of the webview
if (MINIMAL_UI == NO) {
for (UIView *view in self.webView.scrollView.subviews) {
if ([view isKindOfClass:[UIImageView class]] && CGRectGetWidth(view.frame) == CGRectGetWidth(self.view.frame) && CGRectGetMinY(view.frame) > 0.0f + FLT_EPSILON)
[view removeFromSuperview];
else if ([view isKindOfClass:[UIImageView class]] && self.hideWebViewBoundaries)
[view setHidden:YES];
}
}
//if we are hiding the web view boundaries, hide the gradient layer
if (self.hideWebViewBoundaries)
self.gradientLayer.hidden = YES;
//create the buttons view and add them to either the navigation bar or toolbar
UIView *iconsContainerView = [self containerViewWithNavigationButtons];
if (IPAD) {
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:iconsContainerView];
}
else {
NSArray *items = @[BLANK_BARBUTTONITEM, [[UIBarButtonItem alloc] initWithCustomView:iconsContainerView], BLANK_BARBUTTONITEM];
self.toolbarItems = items;
}
// Create the Done button
if (self.beingPresentedModally && !self.onTopOfNavigationControllerStack) {
NSString *title = NSLocalizedStringFromTable(@"Done", @"TOWebViewControllerLocalizable", @"Modal Web View Controller Close");
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:title style:UIBarButtonItemStyleDone target:self action:@selector(doneButtonTapped:)];
if (IPAD)
self.navigationItem.leftBarButtonItem = doneButton;
else
self.navigationItem.rightBarButtonItem = doneButton;
}
//Set the appropriate actions to the buttons
[self.backButton addTarget:self action:@selector(backButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
[self.forwardButton addTarget:self action:@selector(forwardButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
[self.reloadStopButton addTarget:self action:@selector(reloadStopButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
[self.actionButton addTarget:self action:@selector(actionButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
//see if we need to show the toolbar
if (self.navigationController) {
self.hideToolbarOnClose = self.navigationController.toolbarHidden;
self.hideNavBarOnClose = self.navigationBar.hidden;
if (IPAD == NO) { //iPhone
if (self.beingPresentedModally == NO) { //being pushed onto a pre-existing stack, so
[self.navigationController setToolbarHidden:NO animated:animated];
[self.navigationController setNavigationBarHidden:NO animated:animated];
}
else { //Being presented modally, so control the
self.navigationController.toolbarHidden = NO;
}
}
else {
[self.navigationController setNavigationBarHidden:NO animated:animated];
[self.navigationController setToolbarHidden:YES animated:animated];
}
}
//reset the gradient layer in case the bounds changed before display
self.gradientLayer.frame = self.view.bounds;
//start loading the initial page
if (self.url && self.webView.request == nil)
[self.webView loadRequest:[NSURLRequest requestWithURL:self.url]];
}
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
if (self.beingPresentedModally == NO) {
[self.navigationController setToolbarHidden:self.hideToolbarOnClose animated:animated];
[self.navigationController setNavigationBarHidden:self.hideNavBarOnClose animated:animated];
}
}
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
}
- (BOOL)shouldAutorotate
{
if (self.webViewRotationSnapshot)
return NO;
return YES;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
if (self.webViewRotationSnapshot)
return NO;
return YES;
}
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
//get the web view ready for rotation
[self setUpWebViewForRotationToOrientation:toInterfaceOrientation withDuration:duration];
}
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
//reset the gradient layer's frame to match the new bounds
self.gradientLayer.frame = self.view.bounds;
//update the loading bar to match the proper bounds
self.loadingBarView.frame = ({
CGRect frame = self.loadingBarView.frame;
frame.origin.y = self.webView.scrollView.contentInset.top;
frame.origin.x = -CGRectGetWidth(self.loadingBarView.frame) + (CGRectGetWidth(self.view.bounds) * _loadingProgressState.loadingProgress);
frame;
});
//animate the web view snapshot into the proper place
[self animateWebViewRotationToOrientation:toInterfaceOrientation withDuration:duration];
}
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
[self restoreWebViewFromRotationFromOrientation:fromInterfaceOrientation];
}
#pragma mark -
#pragma mark State Tracking
- (BOOL)beingPresentedModally
{
// Check if we have a parentl navigation controller being presented modally
if (self.navigationController)
return ([self.navigationController presentingViewController] != nil);
else // Check if we're directly being presented modally
return ([self presentingViewController] != nil);
return NO;
}
- (BOOL)onTopOfNavigationControllerStack
{
if (self.navigationController == nil)
return NO;
if ([self.navigationController.viewControllers count] && [self.navigationController.viewControllers indexOfObject:self] > 0)
return YES;
return NO;
}
#pragma mark -
#pragma mark Manual Property Accessors
- (void)setUrl:(NSURL *)url
{
if (self.url == url)
return;
_url = [self cleanURL:url];
if (self.webView.loading)
[self.webView stopLoading];
[self.webView loadRequest:[NSURLRequest requestWithURL:self.url]];
}
- (void)setLoadingBarTintColor:(UIColor *)loadingBarTintColor
{
if (loadingBarTintColor == self.loadingBarTintColor)
return;
_loadingBarTintColor = loadingBarTintColor;
self.loadingBarView.backgroundColor = self.loadingBarTintColor;
}
- (UINavigationBar *)navigationBar
{
if (self.navigationController)
return self.navigationController.navigationBar;
return nil;
}
- (UIToolbar *)toolbar
{
if (IPAD)
return nil;
if (self.navigationController)
return self.navigationController.toolbar;
return nil;
}
- (void)setNavigationButtonsHidden:(BOOL)navigationButtonsHidden
{
if (navigationButtonsHidden == _navigationButtonsHidden)
return;
_navigationButtonsHidden = navigationButtonsHidden;
if (_navigationButtonsHidden == NO)
{
[self setUpNavigationButtons];
UIView *iconsContainerView = [self containerViewWithNavigationButtons];
if (IPAD) {
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:iconsContainerView];
}
else {
NSArray *items = @[BLANK_BARBUTTONITEM, [[UIBarButtonItem alloc] initWithCustomView:iconsContainerView], BLANK_BARBUTTONITEM];
self.toolbarItems = items;
}
}
else
{
if (IPAD) {
self.navigationItem.rightBarButtonItem = nil;
}
else {
self.navigationController.toolbarItems = nil;
self.navigationController.toolbarHidden = YES;
}
self.backButton = nil;
self.forwardButton = nil;
self.reloadIcon = nil;
self.stopIcon = nil;
self.reloadStopButton = nil;
self.actionButton = nil;
}
}
- (void)setButtonTintColor:(UIColor *)buttonTintColor
{
if (buttonTintColor == _buttonTintColor)
return;
_buttonTintColor = buttonTintColor;
if (self.buttonThemeAttributes == nil)
self.buttonThemeAttributes = [NSMutableDictionary dictionary];
self.buttonThemeAttributes[TOWebViewControllerButtonTintColor] = _buttonTintColor;
[self setUpNavigationButtons];
}
- (void)setButtonBevelOpacity:(CGFloat)buttonBevelOpacity
{
if (buttonBevelOpacity == _buttonBevelOpacity)
return;
_buttonBevelOpacity = buttonBevelOpacity;
if (self.buttonThemeAttributes == nil)
self.buttonThemeAttributes = [NSMutableDictionary dictionary];
self.buttonThemeAttributes[TOWebViewControllerButtonBevelOpacity] = @(_buttonBevelOpacity);
[self setUpNavigationButtons];
}
#pragma mark -
#pragma mark WebView Delegate
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
BOOL shouldStart = YES;
//TODO: Implement TOModalWebViewController Delegate callback
//if the URL is the load completed notification from JavaScript
if ([request.URL.absoluteString isEqualToString:kCompleteRPCURL])
{
[self finishLoadProgress];
return NO;
}
//If the URL contrains a fragement jump (eg an anchor tag), check to see if it relates to the current page, or another
//If we're merely jumping around the same page, don't perform a new loading bar sequence
BOOL isFragmentJump = NO;
if (request.URL.fragment)
{
NSString *nonFragmentURL = [request.URL.absoluteString stringByReplacingOccurrencesOfString:[@"#" stringByAppendingString:request.URL.fragment] withString:@""];
isFragmentJump = [nonFragmentURL isEqualToString:webView.request.URL.absoluteString];
}
BOOL isTopLevelNavigation = [request.mainDocumentURL isEqual:request.URL];
BOOL isHTTP = [request.URL.scheme isEqualToString:@"http"] || [request.URL.scheme isEqualToString:@"https"];
if (shouldStart && !isFragmentJump && isHTTP && isTopLevelNavigation && navigationType != UIWebViewNavigationTypeBackForward)
{
//Save the URL in the accessor property
_url = [request URL];
[self resetLoadProgress];
}
return shouldStart;
}
- (void)webViewDidStartLoad:(UIWebView *)webView
{
//increment the number of load requests started
_loadingProgressState.loadingCount++;
//keep track if this is the highest number of concurrent requests
_loadingProgressState.maxLoadCount = MAX(_loadingProgressState.maxLoadCount, _loadingProgressState.loadingCount);
//start tracking the load state
[self startLoadProgress];
//update the navigation bar buttons
[self refreshButtonsState];
}
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
[self handleLoadRequestCompletion];
[self refreshButtonsState];
//see if we can set the proper page title at this point
self.title = [self.webView stringByEvaluatingJavaScriptFromString:@"document.title"];
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
[self handleLoadRequestCompletion];
[self refreshButtonsState];
}
#pragma mark -
#pragma mark Button Callbacks
- (void)backButtonTapped:(id)sender
{
[self.webView goBack];
[self refreshButtonsState];
}
- (void)forwardButtonTapped:(id)sender
{
[self.webView goForward];
[self refreshButtonsState];
}
- (void)reloadStopButtonTapped:(id)sender
{
if (self.webView.isLoading)
[self.webView stopLoading];
else
[self.webView reload];
[self refreshButtonsState];
}
- (void)doneButtonTapped:(id)sender
{
[self.presentingViewController dismissViewControllerAnimated:YES completion:self.modalCompletionHandler];
}
#pragma mark -
#pragma mark Action Item Event Handlers
- (void)actionButtonTapped:(id)sender
{
// If we're on iOS 6 or above, we can use the super-duper activity view controller :)
if (NSClassFromString(@"UIActivityViewController"))
{
NSArray *browserActivities = @[[TOActivitySafari new], [TOActivityChrome new]];
UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[self.url] applicationActivities:browserActivities];
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
//If we're on an iPhone, we can just present it modally
[self presentViewController:activityViewController animated:YES completion:nil];
}
else
{
//UIPopoverController requires we retain our own instance of it.
//So if we somehow have a prior instance, clean it out
if (self.sharingPopoverController)
{
[self.sharingPopoverController dismissPopoverAnimated:NO];
self.sharingPopoverController = nil;
}
//Create the sharing popover controller
self.sharingPopoverController = [[UIPopoverController alloc] initWithContentViewController:activityViewController];
self.sharingPopoverController.delegate = self;
[self.sharingPopoverController presentPopoverFromRect:self.actionButton.frame inView:self.actionButton.superview permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
}
else //We must be on iOS 5
{
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil
delegate:self
cancelButtonTitle:nil
destructiveButtonTitle:nil
otherButtonTitles:NSLocalizedStringFromTable(@"Copy URL", @"TOWebViewControllerLocalizable", @"Copy the URL"), nil];
NSInteger numberOfButtons = 1;
//Add Browser
BOOL chromeIsInstalled = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"googlechrome://"]];
NSString *browserMessage = NSLocalizedStringFromTable(@"Open in Safari", @"TOWebViewControllerLocalizable", @"Open in Safari");
if (chromeIsInstalled)
browserMessage = NSLocalizedStringFromTable(@"Open in Chrome", @"TOWebViewControllerLocalizable", @"Open in Chrome");
[actionSheet addButtonWithTitle:browserMessage];
numberOfButtons++;
//Add Email
if ([MFMailComposeViewController canSendMail]) {
[actionSheet addButtonWithTitle:NSLocalizedStringFromTable(@"Mail", @"TOWebViewControllerLocalizable", @"Send Email")];
numberOfButtons++;
}
//Add SMS
if ([MFMessageComposeViewController canSendText]) {
[actionSheet addButtonWithTitle:NSLocalizedStringFromTable(@"Message", @"TOWebViewControllerLocalizable", @"Send iMessage")];
numberOfButtons++;
}
//Add Twitter
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([TWTweetComposeViewController canSendTweet]) {
[actionSheet addButtonWithTitle:NSLocalizedStringFromTable(@"Twitter", @"TOWebViewControllerLocalizable", @"Send a Tweet")];
numberOfButtons++;
}
#pragma clang diagnostic pop
//Add a cancel button if on iPhone
if (IPAD == NO) {
[actionSheet addButtonWithTitle:NSLocalizedStringFromTable(@"Cancel", @"TOWebViewControllerLocalizable", @"Cancel")];
[actionSheet setCancelButtonIndex:numberOfButtons];
[actionSheet showInView:self.view];
}
else {
[actionSheet showFromRect:[(UIView *)sender frame] inView:[(UIView *)sender superview] animated:YES];
}
}
}
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
//Handle whichever button was tapped
switch (buttonIndex) {
case 0:
[self copyURLToClipboard];
break;
case 1:
[self openInBrowser];
break;
case 2: //Email
{
if ([MFMailComposeViewController canSendMail])
[self openMailDialog];
else if ([MFMessageComposeViewController canSendText])
[self openMessageDialog];
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
else if ([TWTweetComposeViewController canSendTweet])
[self openTwitterDialog];
#pragma clang diagnostic pop
}
break;
case 3: //SMS or Twitter
{
if ([MFMessageComposeViewController canSendText])
[self openMessageDialog];
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
else if ([TWTweetComposeViewController canSendTweet])
[self openTwitterDialog];
#pragma clang diagnostic pop
}
break;
case 4: //Twitter (or Cancel)
if ([MFMessageComposeViewController canSendText])
[self openTwitterDialog];
default:
break;
}
}
- (void)popoverControllerDidDismissPopover:(UIPopoverController *)popoverController
{
//Once the popover controller is dismissed, we can release our own reference to it
self.sharingPopoverController = nil;
}
- (void)copyURLToClipboard
{
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.string = self.url.absoluteString;
}
- (void)openInBrowser
{
BOOL chromeIsInstalled = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"googlechrome://"]];
NSURL *inputURL = self.webView.request.URL;
if (chromeIsInstalled)
{
NSString *scheme = inputURL.scheme;
// Replace the URL Scheme with the Chrome equivalent.
NSString *chromeScheme = nil;
if ([scheme isEqualToString:@"http"])
{
chromeScheme = @"googlechrome";
}
else if ([scheme isEqualToString:@"https"])
{
chromeScheme = @"googlechromes";
}
// Proceed only if a valid Google Chrome URI Scheme is available.
if (chromeScheme)
{
NSString *absoluteString = [inputURL absoluteString];
NSRange rangeForScheme = [absoluteString rangeOfString:@":"];
NSString *urlNoScheme = [absoluteString substringFromIndex:rangeForScheme.location];
NSString *chromeURLString = [chromeScheme stringByAppendingString:urlNoScheme];
NSURL *chromeURL = [NSURL URLWithString:chromeURLString];
// Open the URL with Chrome.
[[UIApplication sharedApplication] openURL:chromeURL];
return;
}
}
//If all else fails (Or Chrome is simply not installed), open as per usual
[[UIApplication sharedApplication] openURL:inputURL];
}
- (void)openMailDialog
{
MFMailComposeViewController *mailViewController = [[MFMailComposeViewController alloc] init];
mailViewController.mailComposeDelegate = self;
[mailViewController setMessageBody:[self.url absoluteString] isHTML:NO];
[self presentViewController:mailViewController animated:YES completion:nil];
}
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
[self dismissViewControllerAnimated:YES completion:nil];
}
- (void)openMessageDialog
{
MFMessageComposeViewController *messageViewController = [[MFMessageComposeViewController alloc] init];
messageViewController.messageComposeDelegate = self;
[messageViewController setBody:[self.url absoluteString]];
[self presentViewController:messageViewController animated:YES completion:nil];
}
- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{
[self dismissViewControllerAnimated:YES completion:nil];
}
- (void)openTwitterDialog
{
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
TWTweetComposeViewController *tweetComposer = [[TWTweetComposeViewController alloc] init];
[tweetComposer addURL:self.url];
[self presentViewController:tweetComposer animated:YES completion:nil];
#pragma clang diagnostic pop
}
#pragma mark -
#pragma mark Page Load Progress Tracking Handlers
- (void)resetLoadProgress