我有一个 UITableView ,其数据源是 NSMutableArray 。该数组由一组对象组成。所有单元格都以正确的顺序显示。
现在我想知道如何显示最后一个单元格总是只有一些文本,这在数据源数组中是不存在的。
我希望我足够清楚:)
编辑:----------
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
// Return the number of rows in the section.
//+1 to add the last extra row
return [appDelegate.list count]+1;
}
// Customize the appearance of table view cells.
- (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] autorelease];
}
NSUInteger index=[indexPath row];
if(index ==([appDelegate.list count]+1)) {
cell.textLabel.text = [NSString stringWithFormat:@"extra cell"];
}else{
Item *i = (Item *) [appDelegate.list objectAtIndex:indexPath.row];
cell.textLabel.text = [NSString stringWithFormat:@"%@ (%d %@)",i.iName, i.iQty,i.iUnit];
}
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
但我得到了NSMutableArray超出范围的异常。
可能出现什么问题?
答案 0 :(得分:5)
- (NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section
{
return [your_array count] + 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:SimpleTableIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:SimpleTableIdentifier] autorelease];
}
NSUInteger row = [indexPath row];
if (row == [your_array count])
{
cell.textLabel.text = [NSString stringWithFormat:@"Some text"];
}
else
{
cell.textLabel.text = your array object text;
}
return cell;
}
答案 1 :(得分:1)
在numberOfRowInSection
中返回number of rows = your array count +1
然后在Cell中cellForRowAtIndexPath
检查indexPath.row是否等于你的数组count +1
然后创建要添加的单元格最后。
答案 2 :(得分:1)
您的问题是您要检查索引的值。 list
将计数对象编入索引为0 - 1.因此,您必须检查count
而不是count + 1
。就像现在一样,count
行的请求正在进入else
部分。 count
数组中list
处没有对象。所以你得到了错误。这是修改。
if(index == [appDelegate.list count] ) {
cell.textLabel.text = [NSString stringWithFormat:@"extra cell"];
}else{
Item *i = (Item *) [appDelegate.list objectAtIndex:indexPath.row];
cell.textLabel.text = [NSString stringWithFormat:@"%@ (%d %@)",i.iName, i.iQty,i.iUnit];
}