簡體   English   中英

點擊第一行時,在UITableView中插入新行

[英]Insert new row in UITableView when tapping first row

我是iOS開發的新手。 因此,如果您的回答盡可能詳細,那將是很好的。 我的問題如下:我希望第二部分的單元格始終說“添加新行”。 如果單擊此單元格,則應在頂部添加新行。 我當前的代碼是

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

// Return the number of sections.
return 2;
 }
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

// Return the number of rows in the section.
if (section == 0) {
    return 1;
}
else {

    return [entries count];
}
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath        *)indexPath
{
static NSString *simpleTableIdentifier = @"Cell";
static NSString *todayTableIdentifier = @"Notification";
UITableViewCell *cell = [tableView       dequeueReusableCellWithIdentifier:simpleTableIdentifier];
UITableViewCell *todaycell = [tableView dequeueReusableCellWithIdentifier:todayTableIdentifier];

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];


}
NSString *entry;
if (indexPath.section == 0) {
    entry = [notifications objectAtIndex:indexPath.row];
    cell = todaycell;
} else {
    entry = [entries objectAtIndex:indexPath.row];
}
cell.textLabel.text = entry;

return cell;

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

int selectedRow = indexPath.row;
NSLog(@"row pressed %d", selectedRow);
NSArray *paths = [NSArray arrayWithObject:
                  [NSIndexPath indexPathForRow:2 inSection:2]];
if (selectedRow == 0)
{   [entries addObject:@"a new Entry"];
    [[self tableView] insertRowsAtIndexPaths:paths
                            withRowAnimation:UITableViewRowAnimationTop];
}
else {
    [[self tableView] deleteRowsAtIndexPaths:paths
                            withRowAnimation:UITableViewRowAnimationTop];
  }
}

不幸的是,我的應用程序一直崩潰。

2013-04-11 16:52:39.717 MyStore[12924:c07] *** Assertion failure in -[UITableView    _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2380.17/UITableView.m:861
2013-04-11 16:52:39.718 MyStore[12924:c07] *** Terminating app due to uncaught exception '    NSInternalInconsistencyException', reason: 'attempt to delete row 2 from section 2, but there    are only 2 sections before the update'
*** First throw call stack:
(0x1faa012 0x13e7e7e 0x1fa9e78 0xb6d665 0xbb43c 0xca1f6 0xca271 0x5c6b 0xcb285 0xcb4ed    0xad55b3 0x1f69376 0x1f68e06 0x1f50a82 0x1f4ff44 0x1f4fe1b 0x1f047e3 0x1f04668 0x1bffc 0x21bd  0x20e5 0x1)
libc++abi.dylib: terminate called throwing an exception

這是正常的,除了(在視覺上)添加新行之外,您還需要更新數據源(在這種情況下為Notifications數組)。 UI只是數據源的可視化。 所以:

[notifications addObject:@"a new Entry"];

[[self tableView] insertRowsAtIndexPaths:paths
                            withRowAnimation:UITableViewRowAnimationTop];

當您刪除時:

 [notifications removeObjectAtIndex:indexPath.row];

 [[self tableView] deleteRowsAtIndexPaths:paths
                            withRowAnimation:UITableViewRowAnimationTop];

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM