插入Xcode片段时重用变量名称

时间:2013-03-27 14:47:24

标签: xcode xcode4.5 code-snippets

我制作了一个片段,让UILabel更快。在这个片段中我真的只想设置变量名称一次,然后在设置颜色和背景颜色时使用它。如何重用我在<#labelName#>中设置的内容,以便我不必为我改变的每个属性编写它?

 
UILabel *<#labelName#> = [[UILabel alloc] initWithFrame:CGRectMake(<#x#>, <#y#>,<#width#>, <#height#>)];
<#labelName#>.textColor = <#UIColor#>
<#labelName#>.backgroundColor = [UIColor clearColor];

0 个答案:

没有答案