1.strong:
@property (nonatomic,strong) <#Class#> *<#object#>;
2.weak:
@property (nonatomic,weak) <#Class#> *<#object#>;
3.copy:
@property (nonatomic,copy) NSString *<#string#>;
4.assign:
@property (nonatomic,assign) <#Class#> <#property#>;
5.delegate:
@property (nonatomic,weak) id<<#protocol#>> <#delegate#>;
6.block:
@property (nonatomic,copy) <#Block#> <#block#>;
7.mark:
#pragma mark <#mark#>
8.ReUseCell:
static NSString *rid=<#rid#>; <#Class#> *cell=[tableView dequeueReusableCellWithIdentifier:rid]; if(cell==nil){ cell=[[<#Class#> alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:rid]; } return cell;
9.MainGCD:
dispatch_async(dispatch_get_main_queue(), ^{ <#code#> });
a.Title
代码片段的标题
b.Summary
代码片段的描述文字
c.Platform
可以使用代码片段的平台
d.Language
可以在哪些语言中使用该代码片段
e.Completion Shortcut
代码片段的快捷方式
f.Completion Scopes
可以在哪些文件中使用当前代码片段,当然可以添加多个支持的位置。
最后的一个大得空白区域是对代码片段的效果预览。
Xcode中的代码片段默认放在下面的目录中:
~/Library/Developer/Xcode/UserData/CodeSnippets可以从这里复制出来拷贝到别的电脑中。