IOS开发基础之团购案例17-xib和UITableView两种方式实现
Design By Johnson Shanghai
实现效果
系统和Xcode版本
注意的细节
关键性的代码
//
// ViewController.m
// 17-团购案例
//
// Created by 鲁军 on 2021/2/4.
//
#import "ViewController.h"
#import "CZGoods.h"
#import "CZGoodsCell.h"
@interface ViewController ()<UITableViewDataSource>
@property(nonatomic,strong)NSArray *goods;
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@end
@implementation ViewController
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
CZGoods *model = self.goods[indexPath.row];
// static NSString *ID= @"goods_cell";
//
// UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
// if(cell==nil){
//
// cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
//
// }
// cell.imageView.image = [UIImage imageNamed:model.icon];
// cell.textLabel.text = model.title
// ;
// cell.detailTextLabel.text = [NSString stringWithFormat:@"¥ %@ %@人已购买",model.price,model.buyCount];
CZGoodsCell *cell = [CZGoodsCell goodsCellWithTableView:tableView];