OStack程序员社区-中国程序员成长平台

标题: objective-c - 如何将类别添加到 "hidden"类 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 20:40
标题: objective-c - 如何将类别添加到 "hidden"类

有没有办法将类别添加到您无法访问其头文件的类?

出于测试目的,我想向 UITableViewCellDeleteConfirmationControl 添加一个类别,但该类(据我所知)是私有(private)框架的一部分。

我该怎么做?


详细说明(根据 mihirios 的要求):

我正在尝试扩展 Frank 测试框架,以模拟点击当您尝试删除 UITableViewCell 时出现的确认按钮(大红色“删除”按钮)。 Frank 将 tap 方法添加到 UIControl。出于某种原因,Frank 通常点击控件的方式不适用于 UITableViewCellDeleteConfirmationControl 类(它是 UIControl 的子类)。

我已经创建了一个解决方法。我在 UITableViewCell 中添加了一个类别,方法如下。

- (BOOL)confirmDeletion {
    if (![self showingDeleteConfirmation]) {
        return NO;
    }
    UITableView *tableView = (UITableView *)[self superview];
    id <UITableViewDataSource> dataSource = [tableView dataSource];
    NSIndexPath *indexPath = [tableView indexPathForCell:self];
    [dataSource tableView:tableView
       commitEditingStyle:UITableViewCellEditingStyleDelete
        forRowAtIndexPath:indexPath];
    return YES;
}

这会找到表的数据源并调用它的 tableView:commitEditingStyle:forRowAtIndexPath: 方法,该方法(根据 UITableView 的文档)是系统在用户点击确认按钮。

这可行,但我希望通过向 UITableViewCellDeleteConfirmationControl 添加一个 tap 方法来使 UITableViewCellDeleteConfirmationControl 看起来是一个可点击按钮,覆盖 Frank 的默认方法。 tap 方法会找到包含确认按钮的单元格,然后调用 [cell confirmDeletion]

当我尝试为 UITableViewCellDeleteConfirmationControl 声明一个类别时,编译器提示它“无法解析接口(interface) 'UITableViewCellDeleteConfirmationControl'。”

当我尝试使用某人使用类转储生成的头文件时,链接器提示它找不到符号 _OBJC_CLASS_$_UITableViewCellDeleteConfirmationControl。



Best Answer-推荐答案


出于测试目的,您始终可以使用 NSClassFromString 获取类对象,然后使用 class_replaceMethod 运行时方法来执行您需要的任何操作。见 Objective-C Runtime Reference了解详情。

关于objective-c - 如何将类别添加到 "hidden"类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10361332/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4