gpt4 book ai didi

ios - 如何在 UITableView 中移动没有 NSIndexPath 的单元格?

转载 作者:行者123 更新时间:2023-11-28 22:12:02 24 4
gpt4 key购买 nike

我将在 UITableView 中将一个单元格从一个部分移动到另一个部分。问题是我不知道这个单元格的索引路径。 (或者换句话说,我有这个单元格的索引路径,但索引路径现在可能已经过时了)。相反,我有一个指向此单元格的引用点。我怎样才能移动这个单元格?

提前致谢。

最佳答案

下面是一个示例,说明如何根据在单元格中找到特定字符串将行移动到第 1 部分的顶部。

@implementation TableController {
NSInteger selectedRow;
NSMutableArray *theData;
}

-(void)viewDidLoad {
[super viewDidLoad];
self.tableView.contentInset = UIEdgeInsetsMake(70, 0, 0, 0);
NSMutableArray *colors = [@[@"Black", @"Brown", @"Red", @"Orange", @"Yellow",@"Green", @"Blue"] mutableCopy];
NSMutableArray *nums = [@[@"One", @"Two", @"Three", @"Four", @"Five", @"Six", @"Seven", @"Eight"] mutableCopy];
theData = [@[colors, nums] mutableCopy];
}

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return theData.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [theData[section] count];
}

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
return (section == 0)? @"Colors" : @"Numbers";
}



- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.textLabel.text = theData[indexPath.section][indexPath.row];
return cell;
}



-(IBAction)moveRow:(id)sender {
NSString *objToMove = @"Red";

// Find the section that contains "Red"
NSInteger sectionNum = [theData indexOfObjectPassingTest:^BOOL(NSArray *obj, NSUInteger idx, BOOL *stop) {
return [obj containsObject:objToMove];
}];

// Find the row that contains "Red"
NSInteger rowNum = [theData[sectionNum] indexOfObjectIdenticalTo:objToMove];

if (sectionNum != NSNotFound && rowNum != NSNotFound) {
[theData[sectionNum] removeObjectIdenticalTo:objToMove];
[theData[1] insertObject:objToMove atIndex:0];
[self.tableView moveRowAtIndexPath:[NSIndexPath indexPathForRow:rowNum inSection:sectionNum] toIndexPath:[NSIndexPath indexPathForRow:0 inSection:1]];
}
}

关于ios - 如何在 UITableView 中移动没有 NSIndexPath 的单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22677903/

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