tableview cell中包含cell或者不同的部分

来源:互联网 发布:java多线程编程技术 编辑:程序博客网 时间:2024/05/19 17:11
  • (UITableViewCell )tableView:(UITableView )tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    LJProductTableViewCell *cell=[LJProductTableViewCell ProductTableViewCell:tableView];
    cell.selectionStyle=UITableViewCellSelectionStyleNone;
    cell.delegate=self;
    LJProductGroup *group=self.productGroups[indexPath.section];
    LJProductModel *leftItem=group.products[2*indexPath.row];
    LJProductModel *rightItem=[[LJProductModel alloc]init];
    if(2*indexPath.row+1

0 0
原创粉丝点击