0

我有一个自定义按钮类:

自定义按钮.h 文件:

@interface CustomButton : UIButton
@property (nonatomic, retain) NSString* info;
@end

自定义按钮.m 文件:

#import "CustomButton.h"

@implementation CustomButton

@synthesize info;

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}

@end

在我的主视图控制器中:

CustomButton* btn = [CustomButton buttonWithType:UIButtonTypeDetailDisclosure];

[btn setInfo:@"foobar"];
NSLog(@"%@", [btn info]);

[self.view addSubview:btn];

如果它只是一个简单的按钮 ( [CustomButton new]),我不会收到任何错误。但是如果我选择buttonWithType:UIButtonTypeDetailDisclosure我会得到这个错误:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', 
reason: '-[UIButton setInfo:]: unrecognized selector sent to instance 0x753c8c0'

为什么会这样?

4

2 回答 2

1

buttonWithType:您调用的方法是 from UIButton,而不是您的CustomButton班级。buttonWithType:的返回值为UIButton。即使您将其分配给类型的变量,CustomButton它仍然是一个UIButton对象。由于UIButton没有info属性或setInfo:方法,因此您会看到所看到的错误。

于 2013-02-11T23:06:57.450 回答
1

只要UIButton不提供initWithType:方法 - 您就不能子类化“键入”按钮。您也不能为库类创建扩展。将某些东西“附加”到预定义对象的唯一方法是使用关联对象

#import <objc/runtime.h>
    
UIButton* btn = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
NSString* info = @"foobar";
objc_setAssociatedObject(btn, "info", info, OBJC_ASSOCIATION_RETAIN);
//Later somewhere
NSString* btnInfo = (NSString*)objc_getAssociatedObject(btn, "info");

“信息”可以是您喜欢的任何字符串,它只是稍后检索该对象的键。OBJC_ASSOCIATION_RETAIN 表示对象将被保留并在btn对象dealloc:被调用后自动释放。您可以在此处找到更多详细信息。

解决您的问题的另一种方法是子类化 UIButton,添加您的 info 属性并通过使用方法设置自定义图像使其看起来像披露按钮setImage:forState:

通常,将一些数据与标准 UI 控件耦合是不良架构的标志。也许您会后退一步,尝试找到其他方法将该字符串传递到您需要使用它的地方?

于 2013-02-12T00:31:48.057 回答