UItableViewの使用時に実装する5つの関数
763 ワード
1.各セルの高さを返します
2.The number of sections in tableViewを返します.デフォルトは1です.
3.tableViewの行数を返す
4.各cellの内容
5.cellで処理することを選択
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
2.The number of sections in tableViewを返します.デフォルトは1です.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
3.tableViewの行数を返す
- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section
4.各cellの内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
5.cellで処理することを選択
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;