mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
22 lines
381 B
Objective-C
22 lines
381 B
Objective-C
@class NSString;
|
|
|
|
typedef struct _NSZone NSZone;
|
|
|
|
typedef long NSInteger;
|
|
typedef unsigned long NSUInteger;
|
|
|
|
@protocol NSCopying
|
|
- copyWithZone:(nullable NSZone*)z;
|
|
@end
|
|
|
|
@interface NSObject
|
|
+ (NSObject*) alloc;
|
|
- (NSObject*) init;
|
|
+ (NSObject*) new;
|
|
+ (void) load;
|
|
+ (void) initialize;
|
|
|
|
@property (readonly, copy) NSString *description;
|
|
@property (readonly) NSUInteger hash;
|
|
@end
|