- (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath
cell.textlabel.text=[clocknum objectatindex:indexpath.row];
// [cell.lable settext:[arr objectatindex:indexpath.section]];
// [cell imagepeople].image=[uiimage imagenamed:[nsstring stringwithformat:@"%@%d",peopletring,indexpath.section]];
return cell; }
- (nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section
//新增
//初始時,陣列為空,在陣列有變化時
[tableclock reloaddata];
-(void)tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath
//編輯狀態
- (void)tableview:(uitableview *)tableview commiteditingstyle:(uitableviewcelleditingstyle)editingstyle
forrowatindexpath:(nsindexpath *)indexpath}
UITableView 索引的新增
1 自定義索引 準備資料,設計乙個陣列,陣列裡面的元素為每個section的陣列。返回section總數 nsinteger numberofsectionsintableview uitableview tableview 返回每個section的行數 nsinteger tableview ui...
UITableView 的行刪除
uitableview 編輯模式 created by mj on 13 4 11.import mjviewcontroller.h inte ce mjviewcontroller property nonatomic,retain nsmutablearray data end impleme...
UITableView 自帶編輯刪除
一 uitableview 自帶編輯刪除 1 實現兩個方法即可 pragma mark tableview自帶的編輯功能 void tableview uitableview tableview commiteditingstyle uitableviewcelleditingstyle editi...