码迷,mamicode.com
首页 > 其他好文 > 详细

Adopting Modern Objective-C

时间:2017-02-22 13:08:32      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:UI   should   using   fork   key   define   state   tab   statement   

  • Change id to instancetype in appropriate places

  • Change enum to NS_ENUM or NS_OPTIONS

    • The NS_ENUM macro helps define both the name and type of the enumeration, in this case named UITableViewCellStyle of type NSInteger. The type for enumerations should be NSInteger.
  • Update to the @property syntax

  • Converting to literals, so a statement like [NSNumber numberWithInt:3] becomes @3.

  • Using subscripting, so a statement like [dictionary setObject:@3 forKey:key] becomes dictionary[key] = @3.

Adopting Modern Objective-C

标签:UI   should   using   fork   key   define   state   tab   statement   

原文地址:http://www.cnblogs.com/littlepony/p/6427974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!