码迷,mamicode.com
首页 > 其他好文 > 详细

TabviewCell的多分区实现

时间:2014-10-24 20:33:09      阅读:142      评论:0      收藏:0      [点我收藏+]

标签: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;

    

}

TabviewCell的多分区实现

标签:style   io   sp   on   cti   bs   line   as   ui   

原文地址:http://www.cnblogs.com/ioswws/p/4049035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!