forked from peterhajas/SpringBoard-4.x-Headers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSObject.h
32 lines (28 loc) · 759 Bytes
/
NSObject.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
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "SpringBoard-Structs.h"
@protocol NSObject
-(BOOL)isEqual:(id)equal;
-(unsigned)hash;
-(Class)superclass;
-(Class)class;
-(id)self;
-(NSZone*)zone;
-(id)performSelector:(SEL)selector;
-(id)performSelector:(SEL)selector withObject:(id)object;
-(id)performSelector:(SEL)selector withObject:(id)object withObject:(id)object3;
-(BOOL)isProxy;
-(BOOL)isKindOfClass:(Class)aClass;
-(BOOL)isMemberOfClass:(Class)aClass;
-(BOOL)conformsToProtocol:(id)protocol;
-(BOOL)respondsToSelector:(SEL)selector;
-(id)retain;
-(oneway void)release;
-(id)autorelease;
-(unsigned)retainCount;
-(id)description;
@end