-
Notifications
You must be signed in to change notification settings - Fork 0
/
PRPWebViewController.h
33 lines (25 loc) · 1.04 KB
/
PRPWebViewController.h
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
/***
* 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.
***/
//
// PPRWebViewController.h
//
// Created by Matt Drance on 6/30/10.
// Copyright 2010 Bookhouse. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "PRPWebViewControllerDelegate.h"
@interface PRPWebViewController : UIViewController <UIWebViewDelegate,PRPWebViewControllerDelegate> {}
@property (nonatomic, retain) NSURL *url;
@property (nonatomic, retain) UIColor *backgroundColor;
@property (nonatomic, retain) UIWebView *webView;
@property (nonatomic, retain) UIActivityIndicatorView *activityIndicator;
@property (nonatomic, assign) BOOL showsDoneButton;
@property (nonatomic, assign) id <PRPWebViewControllerDelegate> delegate;
- (void)reload;
@end