标签:style io sp on cti bs line as ui
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
//返回两个分区
return 2;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSInteger count;
if (section==0) {
count=1; //第一个分区一个cell
}
else if (section==1)
{
count=3; //第二个分区三个cell
}
return count;
}
标签:style io sp on cti bs line as ui
原文地址:http://www.cnblogs.com/ioswws/p/4049035.html