美文网首页
iOS 辅助开发

iOS 辅助开发

作者: 天净沙 | 来源:发表于2017-03-20 13:45 被阅读26次

开发辅助

  • 代码块

/** <#TypeName#> */ @property (nonatomic, assign) <#type#> <#name#>;

/** <#TypeName#> */ @property (nonatomic, weak) <#type#> *<#name#>;

/** <#TypeName#> */ @property (nonatomic, copy) <#type#> <#name#>;

/** <#TypeName#> */ @property (nonatomic, strong) <#type#> *<#name#>;

/** <#methodName#> */ extern NSString *const <#NotificationName#>

if (!_<#name#>) { _<#name#> = [<#className#> <#method#>]; } return _<#name#>;

个人资料

苹果开发者中心 电话 4006 701855

  • 系统打印日志关闭
    OS_ACTIVITY_MODE disable

相关文章

网友评论

      本文标题:iOS 辅助开发

      本文链接:https://www.haomeiwen.com/subject/ayvbnttx.html