IOS之 UITableview的简单使用

初学ios写的第一个tabview的demo

1.在ViewController.h文件中 实现接口,定义属性

@interface ViewController : UIViewController<UITableViewDelegate,

UITableViewDataSource>

@property(strong,nonatomic) NSMutableArray *data;


2.在ViewController.m文件中初始化数据- (void)viewDidLoad {
    [super viewDidLoad];
    self.data = @[@"张飞",@"赵云",@"刘备",@"关羽",@"马操",@"孔明",
             @"魏延",@"姜维",@"刘禅"];

}

重写两个重要的方法

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

你可能感兴趣的:(IOS之 UITableview的简单使用)