-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPRPWebViewControllerDelegate.h
More file actions
31 lines (25 loc) · 995 Bytes
/
Copy pathPRPWebViewControllerDelegate.h
File metadata and controls
31 lines (25 loc) · 995 Bytes
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
/***
* Excerpted from "iOS Recipes",
* published by The Pragmatic Bookshelf.
* Copyrights apply to this code. It may not be used to create training material,
* courses, books, articles, and the like. Contact us if you are in doubt.
* We make no guarantees that this code is fit for any purpose.
* Visit http://www.pragmaticprogrammer.com/titles/cdirec for more book information.
***/
//
// PRPWebViewControllerDelegate.h
// SmartWebView
//
// Created by Matt Drance on 3/21/11.
// Copyright 2011 Bookhouse Software LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
@class PRPWebViewController;
@protocol PRPWebViewControllerDelegate <NSObject>
@optional
- (void)webControllerDidFinishLoading:(PRPWebViewController *)controller;
- (void)webController:(PRPWebViewController *)controller
didFailLoadWithError:(NSError *)error;
- (BOOL)webController:(PRPWebViewController *)controller
shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation;
@end