/** 强引用 */@property (nonatomic, strong) <#type#> <#name#>;/** 弱引用 */@property (nonatomic, weak) <#type#> <#name#>;/** 复制引用 */@property (nonatomic, copy) <#type#> <#name#>;/** 标量引用 */@property (nonatomic, assign) <#type#> <#name#>;/** 标记 */#pragma mark - <#info#>/** 多行注释 *//** <#info#> *//** 单行注释 */// <#info#>/** 打印 */NSLog(@"~~~~~~~~~~%@", <#message#>);/** 枚举 */typedef NS_ENUM(NSInteger, <#EnumType#>) { <#name#> = 0, <#name#>};