113 lines
3.3 KiB
Objective-C
113 lines
3.3 KiB
Objective-C
/* NSObject.h
|
|
Copyright (c) 1994-2012, Apple Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _OBJC_NSOBJECT_H_
|
|
#define _OBJC_NSOBJECT_H_
|
|
|
|
#if __OBJC__
|
|
|
|
#include <objc/objc.h>
|
|
#include <objc/NSObjCRuntime.h>
|
|
|
|
@class NSString, NSMethodSignature, NSInvocation;
|
|
|
|
@protocol NSObject
|
|
|
|
- (BOOL)isEqual:(id)object;
|
|
@property (readonly) NSUInteger hash;
|
|
|
|
@property (readonly) Class superclass;
|
|
- (Class)class OBJC_SWIFT_UNAVAILABLE("use 'type(of: anObject)' instead");
|
|
- (instancetype)self;
|
|
|
|
- (id)performSelector:(SEL)aSelector;
|
|
- (id)performSelector:(SEL)aSelector withObject:(id)object;
|
|
- (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2;
|
|
|
|
- (BOOL)isProxy;
|
|
|
|
- (BOOL)isKindOfClass:(Class)aClass;
|
|
- (BOOL)isMemberOfClass:(Class)aClass;
|
|
- (BOOL)conformsToProtocol:(Protocol *)aProtocol;
|
|
|
|
- (BOOL)respondsToSelector:(SEL)aSelector;
|
|
|
|
- (instancetype)retain OBJC_ARC_UNAVAILABLE;
|
|
- (oneway void)release OBJC_ARC_UNAVAILABLE;
|
|
- (instancetype)autorelease OBJC_ARC_UNAVAILABLE;
|
|
- (NSUInteger)retainCount OBJC_ARC_UNAVAILABLE;
|
|
|
|
- (struct _NSZone *)zone OBJC_ARC_UNAVAILABLE;
|
|
|
|
@property (readonly, copy) NSString *description;
|
|
@optional
|
|
@property (readonly, copy) NSString *debugDescription;
|
|
|
|
@end
|
|
|
|
|
|
OBJC_AVAILABLE(10.0, 2.0, 9.0, 1.0, 2.0)
|
|
OBJC_ROOT_CLASS
|
|
OBJC_EXPORT
|
|
@interface NSObject <NSObject> {
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wobjc-interface-ivars"
|
|
Class isa OBJC_ISA_AVAILABILITY;
|
|
#pragma clang diagnostic pop
|
|
}
|
|
|
|
+ (void)load;
|
|
|
|
+ (void)initialize;
|
|
- (instancetype)init
|
|
#if NS_ENFORCE_NSOBJECT_DESIGNATED_INITIALIZER
|
|
NS_DESIGNATED_INITIALIZER
|
|
#endif
|
|
;
|
|
|
|
+ (instancetype)new OBJC_SWIFT_UNAVAILABLE("use object initializers instead");
|
|
+ (instancetype)allocWithZone:(struct _NSZone *)zone OBJC_SWIFT_UNAVAILABLE("use object initializers instead");
|
|
+ (instancetype)alloc OBJC_SWIFT_UNAVAILABLE("use object initializers instead");
|
|
- (void)dealloc OBJC_SWIFT_UNAVAILABLE("use 'deinit' to define a de-initializer");
|
|
|
|
- (void)finalize OBJC_DEPRECATED("Objective-C garbage collection is no longer supported");
|
|
|
|
- (id)copy;
|
|
- (id)mutableCopy;
|
|
|
|
+ (id)copyWithZone:(struct _NSZone *)zone OBJC_ARC_UNAVAILABLE;
|
|
+ (id)mutableCopyWithZone:(struct _NSZone *)zone OBJC_ARC_UNAVAILABLE;
|
|
|
|
+ (BOOL)instancesRespondToSelector:(SEL)aSelector;
|
|
+ (BOOL)conformsToProtocol:(Protocol *)protocol;
|
|
- (IMP)methodForSelector:(SEL)aSelector;
|
|
+ (IMP)instanceMethodForSelector:(SEL)aSelector;
|
|
- (void)doesNotRecognizeSelector:(SEL)aSelector;
|
|
|
|
- (id)forwardingTargetForSelector:(SEL)aSelector OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);
|
|
- (void)forwardInvocation:(NSInvocation *)anInvocation OBJC_SWIFT_UNAVAILABLE("");
|
|
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector OBJC_SWIFT_UNAVAILABLE("");
|
|
|
|
+ (NSMethodSignature *)instanceMethodSignatureForSelector:(SEL)aSelector OBJC_SWIFT_UNAVAILABLE("");
|
|
|
|
- (BOOL)allowsWeakReference UNAVAILABLE_ATTRIBUTE;
|
|
- (BOOL)retainWeakReference UNAVAILABLE_ATTRIBUTE;
|
|
|
|
+ (BOOL)isSubclassOfClass:(Class)aClass;
|
|
|
|
+ (BOOL)resolveClassMethod:(SEL)sel OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);
|
|
+ (BOOL)resolveInstanceMethod:(SEL)sel OBJC_AVAILABLE(10.5, 2.0, 9.0, 1.0, 2.0);
|
|
|
|
+ (NSUInteger)hash;
|
|
+ (Class)superclass;
|
|
+ (Class)class OBJC_SWIFT_UNAVAILABLE("use 'aClass.self' instead");
|
|
+ (NSString *)description;
|
|
+ (NSString *)debugDescription;
|
|
|
|
@end
|
|
|
|
#endif
|
|
|
|
#endif
|