實(shí)現(xiàn)uitableview的controller需要實(shí)現(xiàn) < uitableviewdatasource, uitableviewdelegate > 這兩個(gè)代理,具體就是要實(shí)現(xiàn)以下兩個(gè)方法:
- (nsinteger)tableview:(uitableview *)tableview
numberofrowsinsection:(nsinteger)section{
return [model getrowcount];
}
//返回uitableview的行數(shù)
- (uitableviewcell *)tableview:(uitableview *)tableview
cellforrowatindexpath:(nsindexpath *)indexpath
{
static nsstring *cellidentifier = @”cell”;
uitableviewcell *cell = [tableview
dequeuereusablecellwithidentifier:cellidentifier];
if (cell == nil) {
cell = [[[uitableviewcell alloc]
initwithframe:cgrectzero
reuseidentifier:cellidentifier] autorelease];
}
nsuinteger row = [indexpath row];
cell.textlabel.text = [model getnameatindex:row];
return cell;
}
//呈現(xiàn)uitableview的每一個(gè)cell
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄