gpt4 book ai didi

iphone - 每个部分具有最大行数的可重新排序的 UITableView

转载 作者:太空狗 更新时间:2023-10-30 03:45:24 26 4
gpt4 key购买 nike

一般而言,我是 iPhone 开发和编程的新手,最近完成了 Stephen Kochan 的 Objective-C 2.0 编程,以及 Erica Sadun 的 iPhone Cookbook 的部分内容。仅仅阅读这个网站上的回答问题就对我帮助很大,所以我非常感谢它的所有用户。现在我正在开发我的第一个 iPhone 应用程序,并且取得了很好的进展,除了让我难过的一件事。

我在使用 UITableView 时遇到了一些问题。基本上,我有一个表,每个部分最多需要 6 行,没有最小值(除非删除了 1 行部分的行,在这种情况下,该部分将随之删除)。该表也可以由用户重新排序。当用户将一行拖到已经有最多 6 个分配行的部分时,我希望该部分的底部行向下排序,成为下一部分的顶部行。

至于实现这个,我的第一个想法是调用 tableView:moveRowAtIndexPath:toIndexPath: 中的一个方法,该方法将循环遍历各个部分,确保它们都没有超过 7 行,根据需要调整数组,然后使用 [myTable beginUpdates] block 删除和插入所需的行。这就是所有的样子(注意:我的数组结构是:Array (Table) > Arrays (Sections) > Dictionaries (Items)):

-(void) tableView: (UITableView *) tableView moveRowAtIndexPath: (NSIndexPath *) from toIndexPath: (NSIndexPath *) to
{
// Get the dictionary object for the icon.
NSMutableDictionary *theIcon = [[[TABLE_ARRAY_MACRO objectAtIndex: from.section] objectAtIndex: from.row] mutableCopy];

// Now remove it from the old position, and insert it in the new one.
[[TABLE_ARRAY_MACRO objectAtIndex: from.section] removeObjectAtIndex: from.row];
[[TABLE_ARRAY_MACRO objectAtIndex: to.section] insertObject: theIcon atIndex: to.row];

if ( [[TABLE_ARRAY_MACRO objectAtIndex: to.section] count] > 6 )
[self budgeRowsAtSection: to.section];

// Now we're done with the dictionary.
[theIcon release];

if ( PM_DEBUG_MODE )
NSLog(@"Pet moved!");
}



-(void) budgeRowsAtSection: (NSUInteger) section
{
if ( PM_DEBUG_MODE )
NSLog(@"Budging rows...");

// Set up an array to hold the index paths of the cells to move.
NSMutableArray *budgeFrom = [[NSMutableArray alloc] init];
NSMutableArray *budgeTo = [[NSMutableArray alloc] init];

// Start at the current section, and enumerate down to the nearest page with < 6 items.
int i = section;

while ( i < [TABLE_ARRAY_MACRO count] ) {

if ( PM_DEBUG_MODE )
NSLog(@"Attempting to budge rows in section %i!", i);

if ( [[TABLE_ARRAY_MACRO objectAtIndex: i] count] > 6 ) {

// Grab the last object, and move it to the beginning of the next array.
NSMutableDictionary *lastIcon = [[[PET_ICON_DATA objectAtIndex: i] lastObject] mutableCopy];

[[TABLE_ARRAY_MACRO objectAtIndex: i] removeLastObject];
[[TABLE_ARRAY_MACRO objectAtIndex: (i + 1)] insertObject: lastIcon atIndex: 0];

// Create an index path, and reflect the changes in the table.
[budgeFrom addObject: [NSIndexPath indexPathForRow: 6 inSection: i]];
[budgeTo addObject: [NSIndexPath indexPathForRow: 0 inSection: (i + 1)]];

// Now we're done with the icon.
[lastIcon release];

}

if ( PM_DEBUG_MODE )
NSLog(@"Rows budged for section %i!", i);

++i;

}

if ( PM_DEBUG_MODE )
NSLog(@"From cells: %@\nTo cells: %@", budgeFrom, budgeTo);

if ( PM_DEBUG_MODE )
NSLog(@"Data budged! Updating table...");

[editTable beginUpdates];
[editTable deleteRowsAtIndexPaths: budgeFrom withRowAnimation: UITableViewRowAnimationBottom];
[editTable insertRowsAtIndexPaths: budgeTo withRowAnimation: UITableViewRowAnimationTop];
[editTable endUpdates];

[budgeFrom release];
[budgeTo release];

if ( PM_DEBUG_MODE )
NSLog(@"Row budge done!");
}

问题是当我运行它时,它总是抛出异常;它给了我 无效更新:更新后部分中的行数必须等于更新前的行数,+ 或 - 插入或删除的数字(等),或 Attempted to为 cell 创建两个动画,具体取决于我正在尝试的调整。至于那些调整是什么,我也尝试过使用 reloadSections:withRowAnimation:,当然还有一个简单的 [editTable reloadData]。我已经尝试在相关的 TableView 委托(delegate)/数据源方法中调用此方法,包括 targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:,以及有点神秘的 willMoveToRowAtIndexPath:fromIndexPath: 方法在 TableViews 的 Apple 指南中提到,但在其他地方不存在。

我在 Google、本网站和 Apple 的文档中搜索了所有解决方案,但都无济于事。

所以,简单来说,我的问题是什么是解决这个问题的最佳方法?我忽略了一些明显的事情吗?还是我的实现概念从一开始就存在根本性缺陷?

在此先感谢您的帮助!任何见解将不胜感激。

-- 德鲁·胡德

更新:根据乔丹对他回答的评论中的建议,我已经验证了对数据源的实际编辑是否正确进行。我现在一直收到错误 Attempt to create two animations for cell 当表编辑 block 执行时(该时间由常识和断点验证)。所以我在我的编辑 block 中做错了什么。目前的代码完全如上所示。想法?

最佳答案

[editTable beginUpdates]; [editTable deleteRowsAtIndexPaths: budgeFrom withRowAnimation: UITableViewRowAnimationBottom];
[editTable insertRowsAtIndexPaths: budgeTo withRowAnimation: UITableViewRowAnimationTop];
[editTable endUpdates];

我相信您需要先更新数据源,然后再实际删除要从中删除行的任何部分中的行。因此,在此代码中,在执行删除之前,从 Table_Array_Macro 中删除该行(我认为这是您的数据所在的位置)。

关于iphone - 每个部分具有最大行数的可重新排序的 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2037453/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com