tableView にテキストを含む 6 行 (この場合は「例」) を表示する必要があります。私が知る限り、適切numberOfSectionsInTableView:
に設定されています。numberOfRowsInSection:
以下のコード例を参照してください。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
// Return the number of rows in the section.
return 6;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"Example";
return cell;
}
問題は、存在しない/存在しない行の行を示す下の画像が表示される場合です。
行 6 を過ぎて表示されている行を削除するにはどうすればよいですか?