33.小项目:汽车列表 版本1.0

 

------------- ViewController.m -------------

 #import "ViewController.h"


@interface ViewController () <UITableViewDataSource>

@property (weak, nonatomic) IBOutlet UITableView *tableView;


@end


@implementation ViewController


- (void)viewDidLoad

{

    [super viewDidLoad];

    self.tableView.dataSource = self;

}


-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

    return 2;

}


-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

    if (section == 0)

    {

        return 2;

    }

    else

    {

        return 3;

    }

}


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];

    cell.textLabel.text = @"宝马";

    return cell;

}


@end 

posted @ 2015-08-06 23:54  我要选李白  阅读(102)  评论(0编辑  收藏  举报