30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
void *_pointer;
id _object;
}
/*!
* A pointer to the memory which is not part of the object.
*/
@property (readonly) void *pointer;
/*!
* The object which the memory is not part of.
*/
@property (readonly, nonatomic) id object;
+ (instancetype)exception OF_UNAVAILABLE;
|
|
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
void *_pointer;
id _object;
}
/*!
* A pointer to the memory which is not part of the object.
*/
@property (readonly, nonatomic) void *pointer;
/*!
* The object which the memory is not part of.
*/
@property (readonly, nonatomic) id object;
+ (instancetype)exception OF_UNAVAILABLE;
|