• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 如何在 UITableView 组中添加新部分,如添加新行

[复制链接]
菜鸟教程小白 发表于 2022-12-13 04:06:56 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我一直在谷歌上搜索,但找不到任何直接的教程或答案,所以我决定问一下。

我理解并且能够使用 insertRowsAtIndexPath:withRowAnimation 将新行插入到组 uitableview。

我现在想做的不是插入新行,而是插入新的部分,每个部分包含 2 行。

我该怎么做,或者我应该研究什么?


我尝试过的:

一个 NSMutableArray self.objectArray.

- (NSInteger)numberOfSectionsInTableViewUITableView *)tableView
{
    return self.objectArray.count;
}

tableView:cellForRowAtIndexPath 中,我这样做了:

UITextField *itemNameTextField = (UITextField *)[cell viewWithTag:100];
    NSString *itemName = self.objectArray[indexPath.section][@"itemName"];
    [itemNameTextField setText:itemName];
    [itemNameTextField addTarget:self actionselector(updateItemName forControlEvents:UIControlEventEditingChanged];

我有一个条形按钮项目,点击时调用 addItemBarBtnTapped::

- (IBAction)addItemBarBtnTappedid)sender
{
    // Create item object.
    NSMutableDictionary *itemObject = [[NSMutableDictionary alloc] init];
    itemObject[@"itemName"] = [NSString stringWithFormat"Item %d", self.billItemsArray.count+1];
    itemObject[@"itemPrice"] = @"0";
    itemObject[@"itemSharersArray"] = [[NSMutableArray alloc] init];

    // Add itemObject to objectArray, which reflects the new number of sections, and reloadData to reflect changes.
    [self.objectArray addObject:itemObject];
    [self.tableView reloadData];
}

这是我目前正在做的事情,它之所以有效,是因为我看到单元格中 textFields 中的值具有正确的值,例如项目 1、项目 2 等(这些值在 addItemBarBtnTapped 处设置并存储在数据源中。

但是,我认为这不是“将部分添加到 tableView”的正确方法,它缺少“动画”,并且我希望每次添加部分时每个部分添加 2 行。


我找不到与我的问题相关的答案,也没有任何关于在 Internet 上添加部分的教程,所以我非常感谢你们的帮助!

谢谢!



Best Answer-推荐答案


试试这个代码:

 int indexOfNewSection = self.objectArray.count; 
    [self.tableview beginUpdates];
    [self.tableview insertSections:[NSIndexSet indexSetWithIndex:indexOfNewSection]
                  withRowAnimation:UITableViewRowAnimationTop];

    // Update data model
     itemObject[@"itemName"] = [NSString stringWithFormat"Item %d", self.billItemsArray.count+1];
        itemObject[@"itemPrice"] = @"0";
        itemObject[@"itemSharersArray"] = [[NSMutableArray alloc] init];
    [self.objectArray insertObject:sectionObj atIndex:indexOfNewSection];

    [self.tableview endUpdates];

关于ios - 如何在 UITableView 组中添加新部分,如添加新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18842434/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap