代码改变世界

[某鸥实训记][objective-c][第四天][个人笔记]

2015-09-10 19:11  NyaSu  阅读(152)  评论(0编辑  收藏  举报

老师上午请假了....然后因为有好多人之前的作业没写出来...所以安排写作业....然后我就划水了一上午....

下午回来了...带着做了一遍那个打地鼠.......

所以,..今天没啥东西...

 

TableViewController
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
设置什么什么重用标识符

if(cell == nil){
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
    }
以默认样式初始化cell 重用标识符为cell

 

找了一篇UITableViewCell详解..大概试了一下

http://www.360doc.com/content/13/0922/18/8772388_316280713.shtml

http://www.cnblogs.com/wendingding/p/3764754.html

 

顺便记录一个比较全的有关UITableView的文章

http://www.cnblogs.com/kenshincui/p/3931948.html#mvc