0
我想將我的表格視圖分解爲多個部分。我希望看到一個將表格視圖分成3個部分的例子,然後我可以選擇部分開始的索引。爲iphone應用程序(xcode 4.2)打破自定義部分的表格
因此,如果我有一個對象數組,並且它們填充一個表視圖。我想選擇部分的標題和部分開始的位置(所以1-13行將是第1部分,13-30將是第2部分等)。
我有這個至今:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
if (ingredientListChoice == 1) {
return 3;
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
if (ingredientListChoice == 1) {
return @"Section Title";
}
}
請讓我知道如果你能告訴我什麼,我在得到的一個例子。謝謝。