ios – 在tableView中获取section index的行

ios – 在tableView中获取section index的行,第1张

概述最近我在我的应用程序中为用户名实现了索引功能.我一直在尝试访问每个部分中的行,并在用户点击索引路径时将它们添加到我的收件人数组中.我尝试在objectAtIndex:方法中传递许多不同的值,但似乎都没有工作.我能够在indexPathForRow:inSection:方法中记录正确的索引行和节,但返回值是indexPath而不是整数.所以使用我的objectForIndex:方法显然不对.任何帮助 @H_403_4@ 最近我在我的应用程序中为用户名实现了索引功能.我一直在尝试访问每个部分中的行,并在用户点击索引路径时将它们添加到我的收件人数组中.我尝试在objectAtIndex:方法中传递许多不同的值,但似乎都没有工作.我能够在indexPathForRow:inSection:方法中记录正确的索引行和节,但返回值是indexPath而不是整数.所以使用我的objectForIndex:方法显然不对.任何帮助或参考都是超级的.干杯!

这一行:

PFUser * user = [self.frIEnds objectAtIndex:indexPath.section];

无论我在该部分中使用什么名称,都只返回每个部分中的第一个用户名.所以我需要另外访问Row,而不仅仅是部分.

- (voID)tableVIEw:(UItableVIEw *)tableVIEw dIDSelectRowAtIndexPath:(NSIndexPath *)indexPath {[self.tableVIEw deselectRowAtIndexPath:indexPath animated:NO];UItableVIEwCell *cell = [tableVIEw cellForRowAtIndexPath:indexPath];int section = indexPath.section;int row = indexPath.row;NSIndexPath *newIndexPath = [NSIndexPath indexPathForRow:row inSection:section];NSLog(@"newIndexPath: %@",newIndexPath);PFUser *user = [self.frIEnds objectAtIndex:indexPath.section];if (cell.accessoryType == UItableVIEwCellAccessoryNone) {    cell.accessoryType = UItableVIEwCellAccessorycheckmark;    [self.recipIEnts addobject:user.objectID];NSLog(@"added:%@",user);}else {    cell.accessoryType = UItableVIEwCellAccessoryNone;    [self.recipIEnts removeObject:user.objectID];    NSLog(@"removed:%@",user);}[self.currentUser saveInBackgrounDWithBlock:^(BOol succeeded,NSError *error) {    if (error) {        NSLog(@"Error %@ %@",error,[error userInfo]);    }}];}
@H_403_4@解决方法 嗨,这是足够的尝试,让我知道你是否面临任何问题…

- (voID)tableVIEw:(UItableVIEw *)tableVIEw dIDSelectRowAtIndexPath:(NSIndexPath *)indexPath {[self.tableVIEw deselectRowAtIndexPath:indexPath animated:NO];NSArray * nameArray = [self.sectionsArray objectAtIndex:indexPath.section];PFUser *user = (PFUser*)[nameArray objectAtIndex:indexPath.row];// PFUser *user = (PFUser*)[self.frIEnds objectAtIndex:indexPath.section];if (cell.accessoryType == UItableVIEwCellAccessoryNone) {    cell.accessoryType = UItableVIEwCellAccessorycheckmark;    [self.recipIEnts addobject:user.objectID];NSLog(@"added:%@",user);}// this is enough}
@H_403_4@ @H_403_4@ @H_403_4@ @H_403_4@ 总结

以上是内存溢出为你收集整理的ios – 在tableView中获取section index的行全部内容,希望文章能够帮你解决ios – 在tableView中获取section index的行所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1057245.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存