Skip to content

Commit c846652

Browse files
author
Matthias Plappert
committed
Initial commit
0 parents  commit c846652

13 files changed

+1089
-0
lines changed

Classes/PWWebViewController.h

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
//
2+
// PWWebViewController.h
3+
// PWWebViewController
4+
//
5+
// Created by Matthias Plappert on 24.10.09.
6+
// Copyright 2009 phapswebsolutions. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
#import <MessageUI/MessageUI.h>
11+
12+
// You can use this to identify a action sheet tag that was created by PWWebViewController
13+
#define kPWWebViewControllerActionSheetTag 5000
14+
15+
// The index of the mail action
16+
#define kPWWebViewControllerActionSheetMailIndex 1
17+
18+
// The index of the open in safari action
19+
#define kPWWebViewControllerActionSheetSafariIndex 0
20+
21+
@interface PWWebViewController : UIViewController <UIWebViewDelegate, UIActionSheetDelegate, MFMailComposeViewControllerDelegate> {
22+
// The web view
23+
UIWebView *_webView;
24+
25+
// Toolbar and used buttons
26+
UIToolbar *_toolbar;
27+
UIBarButtonItem *_actionButton;
28+
UIBarButtonItem *_reloadButton;
29+
UIBarButtonItem *_loadingButton;
30+
UIBarButtonItem *_forwardButton;
31+
UIBarButtonItem *_backButton;
32+
UIBarButtonItem *_flexibleSpace;
33+
34+
/* This is used to store the request if the view is loaded.
35+
Important if view was released because of low memory conditions */
36+
NSURLRequest *_request;
37+
}
38+
39+
/* Readonly property to access the UIWebView.
40+
However, you should use this only to retreive values from the web view */
41+
@property (nonatomic, readonly) UIWebView *webView;
42+
43+
// Use this method to init the web view controller
44+
- (id)initWithRequest:(NSURLRequest *)request;
45+
46+
// Shows all available actions in a UIActionSheet that can be performed on the current page
47+
- (void)showAvailableActions;
48+
49+
// Reloads the current website
50+
- (void)reload;
51+
52+
// Go one site back, if available
53+
- (void)goBack;
54+
55+
// Go on site forward, if available
56+
- (void)goForward;
57+
58+
@end

Classes/PWWebViewController.m

+327
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,327 @@
1+
//
2+
// PWWebViewController.m
3+
// PWWebViewController
4+
//
5+
// Created by Matthias Plappert on 24.10.09.
6+
// Copyright 2009 phapswebsolutions. All rights reserved.
7+
//
8+
9+
#import "PWWebViewController.h"
10+
11+
@interface PWWebViewController (Private)
12+
13+
// This is used internally to check if the forward/back buttons are enabled
14+
- (void)checkNavigationStatus;
15+
16+
@end
17+
18+
19+
@implementation PWWebViewController
20+
21+
- (id)initWithRequest:(NSURLRequest *)request
22+
{
23+
if (self = [super init]) {
24+
_request = [request retain];
25+
self.hidesBottomBarWhenPushed = YES;
26+
}
27+
return self;
28+
}
29+
30+
- (void)loadView
31+
{
32+
// Get frames
33+
CGRect screenRect = self.navigationController.view.frame;
34+
CGRect navigationBarFrame = self.navigationController.navigationBar.frame;
35+
36+
// Get status bar frame. Check if it is not zero and than make width + height 20.0. Seems like a bug in iPhone OS
37+
CGRect statusRect = [UIApplication sharedApplication].statusBarFrame;
38+
if (statusRect.size.width != 0.0 && statusRect.size.height != 0.0) {
39+
statusRect.size.width = statusRect.size.height = 20.0;
40+
}
41+
42+
// Create final view rect
43+
CGRect frame = CGRectMake(0.0, 0.0, screenRect.size.width, screenRect.size.height - statusRect.size.height - navigationBarFrame.size.height);
44+
45+
// Simple background view
46+
UIView *view = [[UIView alloc] initWithFrame:frame];
47+
self.view = view;
48+
[view release];
49+
50+
// Load web view
51+
_webView = [[UIWebView alloc] initWithFrame:CGRectMake(frame.origin.x, frame.origin.y, frame.size.width, frame.size.height - navigationBarFrame.size.height)];
52+
_webView.delegate = self;
53+
_webView.scalesPageToFit = YES;
54+
_webView.autoresizingMask = (UIViewAutoresizingFlexibleLeftMargin |
55+
UIViewAutoresizingFlexibleWidth |
56+
UIViewAutoresizingFlexibleRightMargin |
57+
UIViewAutoresizingFlexibleTopMargin |
58+
UIViewAutoresizingFlexibleHeight |
59+
UIViewAutoresizingFlexibleBottomMargin);
60+
[self.view addSubview:_webView];
61+
62+
// Load content of web view
63+
[_webView loadRequest:_request];
64+
65+
// Create action button. This shows a selection of available actions in context of the displayed page
66+
_actionButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction
67+
target:self
68+
action:@selector(showAvailableActions)];
69+
70+
// Create reload button to reload the current page
71+
_reloadButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh
72+
target:self
73+
action:@selector(reload)];
74+
75+
// Create loading button that is displayed if the web view is loading anything
76+
UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
77+
[activityView startAnimating];
78+
_loadingButton = [[UIBarButtonItem alloc] initWithCustomView:activityView];
79+
[activityView release];
80+
81+
// Shows the next page, is disabled by default. Web view checks if it can go forward and disables the button if neccessary
82+
_forwardButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"PWWebViewControllerArrowRight.png"] style:UIBarButtonItemStylePlain
83+
target:self
84+
action:@selector(goForward)];
85+
_forwardButton.enabled = NO;
86+
87+
// Shows the last page, is disabled by default. Web view checks if it can go back and disables the button if neccessary
88+
_backButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"PWWebViewControllerArrowLeft.png"] style:UIBarButtonItemStylePlain
89+
target:self
90+
action:@selector(goBack)];
91+
_backButton.enabled = NO;
92+
93+
// Create toolbar
94+
_toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(frame.origin.x, frame.origin.y + frame.size.height - navigationBarFrame.size.height, frame.size.width, navigationBarFrame.size.height)];
95+
_toolbar.autoresizingMask = (UIViewAutoresizingFlexibleLeftMargin |
96+
UIViewAutoresizingFlexibleWidth |
97+
UIViewAutoresizingFlexibleRightMargin |
98+
UIViewAutoresizingFlexibleTopMargin |
99+
UIViewAutoresizingFlexibleHeight |
100+
UIViewAutoresizingFlexibleBottomMargin);
101+
[self.view addSubview:_toolbar];
102+
103+
// Flexible space
104+
_flexibleSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:NULL];
105+
106+
// Assign buttons to toolbar
107+
_toolbar.items = [NSArray arrayWithObjects:_actionButton, _flexibleSpace, _backButton, _flexibleSpace, _forwardButton, _flexibleSpace, _reloadButton, nil];
108+
}
109+
110+
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
111+
{
112+
return (interfaceOrientation == UIInterfaceOrientationPortrait ||
113+
interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
114+
interfaceOrientation == UIInterfaceOrientationLandscapeRight);
115+
}
116+
117+
- (void)viewDidUnload
118+
{
119+
// Save last request
120+
[_request release];
121+
_request = [_webView.request retain];
122+
123+
[_webView release];
124+
_webView = nil;
125+
126+
[_actionButton release];
127+
_actionButton = nil;
128+
129+
[_reloadButton release];
130+
_reloadButton = nil;
131+
132+
[_loadingButton release];
133+
_loadingButton = nil;
134+
135+
[_forwardButton release];
136+
_forwardButton = nil;
137+
138+
[_backButton release];
139+
_backButton = nil;
140+
141+
[_flexibleSpace release];
142+
_flexibleSpace = nil;
143+
}
144+
145+
- (void)dealloc
146+
{
147+
[_webView release];
148+
149+
[_request release];
150+
151+
[_toolbar release];
152+
[_actionButton release];
153+
[_reloadButton release];
154+
[_loadingButton release];
155+
[_forwardButton release];
156+
[_backButton release];
157+
[_flexibleSpace release];
158+
159+
[super dealloc];
160+
}
161+
162+
#pragma mark -
163+
#pragma mark Accessors
164+
165+
- (UIWebView *)webView
166+
{
167+
return _webView;
168+
}
169+
170+
#pragma mark -
171+
#pragma mark Button actions
172+
173+
- (void)showAvailableActions
174+
{
175+
// Create action sheet without any buttons
176+
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:[self.webView.request.URL absoluteString]
177+
delegate:self
178+
cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:nil];
179+
180+
// Add buttons
181+
[actionSheet addButtonWithTitle:NSLocalizedString(@"Open in Safari", nil)];
182+
183+
if ([MFMailComposeViewController canSendMail]) {
184+
// The iPhone/iPod touch is ready to send mails. If it is not, do not add the mail link button
185+
[actionSheet addButtonWithTitle:NSLocalizedString(@"Mail Link", nil)];
186+
}
187+
188+
// Add cancel button and mark is as cancel button
189+
[actionSheet addButtonWithTitle:NSLocalizedString(@"Cancel", nil)];
190+
actionSheet.cancelButtonIndex = actionSheet.numberOfButtons - 1;
191+
192+
// Assign tag, show it from toolbar and release it
193+
actionSheet.tag = kPWWebViewControllerActionSheetTag;
194+
[actionSheet showFromToolbar:_toolbar];
195+
[actionSheet release];
196+
}
197+
198+
- (void)reload
199+
{
200+
[self.webView reload];
201+
}
202+
203+
- (void)goBack
204+
{
205+
if (self.webView.canGoBack == YES) {
206+
// We can go back. So make the web view load the previous page.
207+
[self.webView goBack];
208+
209+
// Check the status of the forward/back buttons
210+
[self checkNavigationStatus];
211+
}
212+
}
213+
214+
- (void)goForward
215+
{
216+
if (self.webView.canGoForward == YES) {
217+
// We can go forward. So make the web view load the next page.
218+
[self.webView goForward];
219+
220+
// Check the status of the forward/back buttons
221+
[self checkNavigationStatus];
222+
}
223+
}
224+
225+
#pragma mark -
226+
#pragma mark UIWebViewDelegate
227+
228+
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
229+
{
230+
return YES;
231+
}
232+
233+
- (void)webViewDidStartLoad:(UIWebView *)webView
234+
{
235+
// Change toolbar items
236+
_toolbar.items = [NSArray arrayWithObjects:_actionButton, _flexibleSpace, _backButton, _flexibleSpace, _forwardButton, _flexibleSpace, _loadingButton, nil];
237+
238+
// Set title
239+
self.title = NSLocalizedString(@"Loading...", nil);
240+
}
241+
242+
- (void)webViewDidFinishLoad:(UIWebView *)webView
243+
{
244+
// Change toolbar items
245+
_toolbar.items = [NSArray arrayWithObjects:_actionButton, _flexibleSpace, _backButton, _flexibleSpace, _forwardButton, _flexibleSpace, _reloadButton, nil];
246+
247+
// Set title
248+
NSString *title = [webView stringByEvaluatingJavaScriptFromString:@"document.title"];
249+
self.title = title;
250+
251+
// Check if forward/back buttons are available
252+
[self checkNavigationStatus];
253+
}
254+
255+
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
256+
{
257+
// Change toolbar items
258+
_toolbar.items = [NSArray arrayWithObjects:_actionButton, _flexibleSpace, _backButton, _flexibleSpace, _forwardButton, _flexibleSpace, _reloadButton, nil];
259+
260+
// Check if forward/back buttons are available
261+
[self checkNavigationStatus];
262+
263+
// Set title
264+
self.title = NSLocalizedString(@"Page not found", nil);
265+
266+
// Display an alert view that tells the userr what went wrong.
267+
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Connection did fail", nil)
268+
message:[error localizedDescription]
269+
delegate:nil
270+
cancelButtonTitle:NSLocalizedString(@"OK", nil)
271+
otherButtonTitles:nil];
272+
[alertView show];
273+
[alertView release];
274+
}
275+
276+
#pragma mark -
277+
#pragma mark UIActionSheetDelegate
278+
279+
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
280+
{
281+
if (actionSheet.tag == kPWWebViewControllerActionSheetTag && buttonIndex != actionSheet.cancelButtonIndex) {
282+
// It is one of your action sheets and it was not canceled
283+
if (buttonIndex == kPWWebViewControllerActionSheetSafariIndex) {
284+
// Open URL in Safari
285+
[[UIApplication sharedApplication] openURL:self.webView.request.URL];
286+
} else if (buttonIndex == kPWWebViewControllerActionSheetMailIndex) {
287+
// Mail URL
288+
MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
289+
[controller setMessageBody:[self.webView.request.URL absoluteString] isHTML:NO];
290+
controller.mailComposeDelegate = self;
291+
[self presentModalViewController:controller animated:YES];
292+
[controller release];
293+
}
294+
}
295+
}
296+
297+
#pragma mark -
298+
#pragma mark MFMailComposeViewControllerDelegate
299+
300+
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
301+
{
302+
if (result == MFMailComposeResultFailed && error != nil) {
303+
// There was an error. Display an alert view.
304+
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Sending failed", nil)
305+
message:[error localizedDescription]
306+
delegate:nil
307+
cancelButtonTitle:NSLocalizedString(@"OK", nil)
308+
otherButtonTitles:nil];
309+
[alertView show];
310+
[alertView release];
311+
}
312+
313+
// Hide controller
314+
[controller dismissModalViewControllerAnimated:YES];
315+
}
316+
317+
#pragma mark -
318+
#pragma mark Private methods
319+
320+
- (void)checkNavigationStatus
321+
{
322+
// Check if we can go forward or back
323+
_backButton.enabled = self.webView.canGoBack;
324+
_forwardButton.enabled = self.webView.canGoForward;
325+
}
326+
327+
@end

0 commit comments

Comments
 (0)