首页 > 其他 > 详细

Chapter 8 UITableView and UITableViewController

时间:2014-09-18 01:59:23      阅读:287      评论:0      收藏:0      [点我收藏+]

Chapter 8 UITableView and UITableViewController 

 

1. The designated initializer of UITableViewController is initWithStyle:, which takes a constant that determines the style of the table view. There are two options: UITableViewStylePlain and UITableViewStyleGrouped. These looked quite different on iOS6, but the differences are quite minor as of iOS7.

 

2. A static variable is not destroyed when the method is done executing. Like a global variable, it is not kept on the stack. Static variable can be used singleton pattern.

 

+(instancetype)sharedStore

{

    static BNRItemStore *sharedStore = nil;

    if(!sharedStore)

    {

        sharedStore = [[self alloc] initPrivate];

    }

    return sharedStore;

}

 

-(instancetype)initPrivate

{

    self = [super init];

    return self;

}

 

3. Using the @class directive can speed up compile times considerably because fewer files have to be recompiled when one file changes.

 

4. To reuse UITableViewCell, the UITableViewCell should be registered to the table view firstly.

 

 

 

 

Chapter 8 UITableView and UITableViewController

原文:http://www.cnblogs.com/1oo1/p/3978401.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!