-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHeader.h
More file actions
62 lines (51 loc) · 1.92 KB
/
Copy pathHeader.h
File metadata and controls
62 lines (51 loc) · 1.92 KB
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
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#define APP_STORE_UI_FRAMEWORK [NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/AppStoreUI.framework"]
#define NO_UPDATES_STRING NSLocalizedStringFromTableInBundle(@"NO_UPDATES", @"Localizable", APP_STORE_UI_FRAMEWORK, @"")
#define IS_IPAD ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
@interface DOMNode : NSObject
@property (readonly, retain) DOMNode *parentNode;
- (id)getElementsByClassName:(NSString *)className;
- (id)removeChild:(id)node;
- (id)appendChild:(id)node;
@end
@interface DOMElement : DOMNode
- (id)getAttribute:(NSString *)attr;
- (void)setAttribute:(NSString *)attr value:(NSString *)value;
@property (readonly, retain) DOMElement *firstElementChild;
@property (readonly, retain) DOMNode *parentNode;
@property (copy) NSString *className;
@property (copy) NSString *innerHTML;
@end
@interface DOMNodeList : NSObject
@property (readonly) NSUInteger length;
- (id)item:(NSUInteger)index;
@end
@interface DOMDocument : NSObject
@property (retain) DOMElement *body;
- (id)createElement:(NSString *)elementName;
- (id)getElementsByClassName:(NSString *)className;
@end
@interface WebDataSource : NSObject
- (NSURLRequest *)initialRequest;
@end
@interface WebFrame : NSObject
- (DOMDocument *)DOMDocument;
- (WebDataSource *)dataSource;
@end
@interface ASClientApplicationController : NSObject
+ (id)sharedController;
@end
@interface SUTabBarController : UITabBarController
- (id)viewControllerForSectionIdentifier:(NSString *)identifier;
@end
@interface SoftwareUpdate : NSObject
- (id)initWithDictionary:(NSDictionary *)dictionary;
@property (readonly, nonatomic) NSDictionary *dictionary;
@property (readonly, nonatomic) NSNumber *itemIdentifier;
@property (readonly, nonatomic) NSNumber *_versionIdentifier;
@end
@interface SUClientApplicationController : NSObject
+ (id)sharedController;
- (UITabBarController *)tabBarController;
@end