欢迎来到天天文库
浏览记录
ID:40755379
大小:128.86 KB
页数:4页
时间:2019-08-07
《UITableView 静态表格设置 图文》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、首先当然是拖出一个uitableview到storyboard上创建自己的tablecontroller,记为Acontroller,继承自uitableviewcontroller这样默认的uitableview里是有一个section,三个cell的选中cell把style改为只要不是Custom即可输入内容如图选中section可改变头尾命名和行数选中tableview可改变section数,以及section格式最后把tableview的controller改成自己定义的Acontroller就可以啦那么运行一下啊,,会发现没有我们输
2、进去的字符串啊再看下Acotroller会发现有这样的一个方法-(NSInteger)tableView:(UITableView *)tableViewnumberOfRowsInSection:(NSInteger)section默认是return0这里其实是返回每个section中得行数,按照你指定的行数进行显示如果只有一个section,那么return这一个section中的行数就好了那么,要是有多个section怎么办呢?看到传进的参数为section,想到section一定是有编号的。通过断点跟进去发现,section是从0开始
3、编号的,第一个section是0,第二个section是1.。。那么如果有两个section,一个有3行,一个有2行就可以写成-(NSInteger)tableView:(UITableView*)tableViewnumberOfRowsInSection:(NSInteger)section{#warningIncompletemethodimplementation. //Returnthenumberofrowsinthesection. if (section==0){ return 3; }
4、else if (section==1) {return 2;} else{return 0;} }这样了。至此静态表格就搞定了,同时还发现section显示的时候是先处理section1在处理section0的,因此猜想可能是用个栈把section的array压进去的,>_<
此文档下载收益归作者所有