存储路径
/Users/用户名/Library/Developer/Xcode/UserData/CodeSnippets
<#占位符格式#>
例:
UIButton*replaceButton = [UIButtonbuttonWithType:UIButtonTypeCustom];
replaceButton.tag = <#Value#>;
replaceButton.frame = CGRectMake(<#CGFloat x#>, <#CGFloat y#>, <#CGFloat width#>, <#CGFloat height#>);
[replaceButtonsetTitle:@"<#string#>"forState:UIControlStateNormal];
[replaceButtonsetImage:[UIImageimageNamed:@"<#string#>"]forState:UIControlStateNormal];
[replaceButtonsetBackgroundImage:[UIImageimageNamed:@"<#string#>"]forState:UIControlStateNormal];
[replaceButton setTitleColor:[UIColor <#color#>] forState:UIControlStateNormal];
[replaceButton setBackgroundColor:[UIColor <#color#>]];
[replaceButton addTarget:selfaction:@selector(<#selector#>) forControlEvents:UIControlEventTouchUpInside];
[<#view#> addSubview:replaceButton];
网友评论