自定义cell 注意问题

用xib自定义UITableViewCell的注意事项

http://www.tuicool.com/articles/67bYri

http://blog.waaile.com/ios-custom-uitableviewcell-with-xib/

 

 

xib方式Cell重用

   SearchCell *cell = [tableView dequeueReusableCellWithIdentifier:@"SearchCellID"];
    if (cell == nil) {
        cell = [[[NSBundle mainBundle]loadNibNamed:@"SearchCell" owner:self options:nil]lastObject];
    }

  

自定义UITableViewCell上的delete按钮

 http://blog.sina.com.cn/s/blog_881ed85001017x56.html

 

自定义UITableViewCell上的delete按钮

点击cell显示cell的细节

http://www.rrzhai.com/p/7356

http://www.itstrike.cn/Question/6aa0ce25-4d5e-4e9e-88cc-b827f22f6e68.htm

 

Getting row of UITableView cell on button press

 

[iPhone中级]iPhone实现自定义多选列表l

posted @ 2014-06-21 19:03  huluo666  阅读(160)  评论(0编辑  收藏  举报