7.1 创建表
(1) 创建一个UITableViewController的子类
@interface MyTableViewController : UITableViewController {
}
-(id)init;
-(void)dealloc;
添加数据源, 由三个函数来回答数据绑定的请求:numberOfSectionsInTableView, numberOfRowsInSection 和 cellForRowAtInd...
7.1 创建表
(1) 创建一个UITableViewController的子类
@interface MyTableViewController : UITableViewController {
}
-(id)init;
-(void)dealloc;
添加数据源, 由三个函数来回答数据绑定的请求:numberOfSectionsInTableView, numberOfRowsInSection 和 cellForRowAtInd...