HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – UITableView,替换选择时的单元格视图大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以替换所选单元格的单元格视图?我已将我的控制器注册为数据源和委托.对单元格视图,行号,选择状态等的请求都很好.在单元格选择回调中,我试图让表格视图用新视图重新加载单元格(而不是实际数据!).基本上,我希望单元格视图展开并显示更多基础数据(如果已选中).问题是我不知道如何使表视图向我的控制器询问新视图.我可以看到视图正在请求单元格高度,但仅此而已.

在视图上调用reloadData可以正常工作,但它效率低下并且带有一系列自己的问题(动画可能性,维护选择状态等).

解决方法

这是我要采取的方法.
@property (nonatomic,strong) NSIndexPath *selectedIndexPath;

将NSIndexPath类型的属性设置为控制器以存储选择的索引路径.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    self.selectedIndexPath = indexPath;
    [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation: UITableViewRowAnimationNone];
}

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

    if ([indexPath compare:self.selectedIndexPath] == NSOrderedSame) {
        // Create your custom cell here and return it.
    }
    else {
        // Should create a normal cell and return it.
    }
}

究竟.另请注意,您可能想要取消选择.这是Swift中的完整代码.根据需要在cellForRowAtIndexPath中使用selectedIndexPath.

//选择TableViewController
导入UIKit

class SelectingTableViewController:UITableViewController
{
内部var selectedIndexPath:NSIndexPath? =没有

override func viewDidLoad()
    {
    super.viewDidLoad()
    tableView.estimatedRowHeight = 68.0
    tableView.rowHeight = UITableViewAutomaticDimension

    self.cleaRSSelectionOnViewWillAppear = false;
    }

override func tableView
    (tableView:UITableView,didSelectRowAtIndexPath indexPath:NSIndexPath)
        {
        print("did select....")

        // in fact,was this very row selected,// and the user is clicking to deselect it...
        // if you don't want "click a selected row to deselect"
        // then on't include this clause.
        if selectedIndexPath == indexPath
            {
            print("(user clicked on selected to deselect)")
            selectedIndexPath = nil
            tableView.reloadRowsAtIndexPaths(
                [indexPath],withRowAnimation:UITableViewRowAnimation.None)

            tableView.deselectRowAtIndexPath(indexPath,animated:false)
            return
            }

        // in fact,was some other row selected??
        // user is changing to this row? if so,also deselect that row
        if selectedIndexPath != nil
            {
            let pleaseRedrawMe = selectedIndexPath!
            // (note that it will be drawn un-selected
            // since we're chaging the 'selectedIndexPath' global)
            selectedIndexPath = indexPath
            tableView.reloadRowsAtIndexPaths(
                [pleaseRedrawMe,indexPath],withRowAnimation:UITableViewRowAnimation.None)
            return;
            }

        // no prevIoUs selection.
        // simply select that new one the user just touched.
        // note that you can not use Apple's willDeselectRowAtIndexPath
        // functions ... because they are freaky
        selectedIndexPath = indexPath
        tableView.reloadRowsAtIndexPaths(
            [indexPath],withRowAnimation:UITableViewRowAnimation.None)

        }

}

大佬总结

以上是大佬教程为你收集整理的ios – UITableView,替换选择时的单元格视图全部内容,希望文章能够帮你解决ios – UITableView,替换选择时的单元格视图所遇到的程序开发问题。

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: