我想用一個動態部分定義靜態表格視圖 這可能嗎?在靜態表格視圖中包含「靜態單元格」的「動態原型」部分
第0節應該是靜態的,這些標籤用xcode連接到插座。
第1節應是動態的
我嘗試這樣做,但我不知道我可以爲靜態部分返回什麼細胞。
static NSString *CellIdentifier = @"ItemCellBasic";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
switch (indexPath.section)
{ case 0:
return // I don´t know what
case 1:
cell.textLabel [email protected]"dynamic";
return cell;
}
編輯1; 現在我想:
case 0: return [super tableView:tableView cellForRowAtIndexPath:indexPath];
但得到:
*** Assertion failure in -[UITableView _createPreparedCellForGlobalRow:withIndexPath:], /SourceCache/UIKit_Sim/UIKit-1912.3/UITableView.m:6072
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:'
屬性:xcode中的「content」,可以是「靜態單元」或「動態原型」。 – mica 2012-02-15 21:29:42