14 lines
389 B
Mathematica
14 lines
389 B
Mathematica
|
|
||
|
@interface ClassName
|
||
|
|
||
|
@property () __weak id PROP;
|
||
|
@property (nonatomic, copy) NSArray <NSObject *> <ProtocolName> *array;
|
||
|
@property (nonatomic, weak) IBOutlet UIImageView *view;
|
||
|
@property (nonatomic, setter=setURL:) NSURL *url;
|
||
|
@property (nonatomic, atomic, class, readwrite, null_resettable, NS_NONATOMIC_IOSONLY) NSString *string;
|
||
|
@property (direct, readonly) int intProperty;
|
||
|
|
||
|
@end
|
||
|
|
||
|
|