-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHTMLSourceViewController.h
42 lines (29 loc) · 1.01 KB
/
HTMLSourceViewController.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
34
35
36
37
38
39
40
41
42
//
// AboutViewController.h
// MusicOneCoreData
//
// Created by Bobby Wallace on 02/10/2010.
// Copyright 2010 Total Managed Fitness. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol HTMLControllerDelegate;
@interface HTMLSourceViewController : UIViewController <UIWebViewDelegate>{
NSString * startUpUrl;
UIActivityIndicatorView *activity;
UIWebView *htmlView;
UIBarButtonItem *reloadButton;
NSString *cacheKey;
id <HTMLControllerDelegate> HTMLdelegate;
}
@property (nonatomic, assign) id <HTMLControllerDelegate> HTMLdelegate;
@property (nonatomic, retain) IBOutlet UIActivityIndicatorView *activity;
@property (nonatomic, retain) UIBarButtonItem *reloadButton;
@property (nonatomic, retain) IBOutlet UIWebView *htmlView;
@property (nonatomic, assign) NSString *cacheKey;
- (id) initWithTitle: (NSString *) title URLString: (NSString *) urlString;
- (void) reload;
- (IBAction)done;
@end
@protocol HTMLControllerDelegate
- (void)HTMLViewControllerDidFinish:(HTMLSourceViewController *)controller;
@end