0

我有一个 UIViewController 类,我试图在其中分配一个 UIButton 类。这是一个示例代码。

MyViewController.m 
- (void)viewDidLoad
{
CGRect frame = CGRectMake(companybuttonxOffset, companybuttonyOffset, buttonWidth, buttonHeight);
CustomButton *customButton = [[CustomButton alloc]initWithFrame:frame];
[self.view addSubview:customButton];
[super viewDidLoad];
}
CustomButton.h

#import <UIKit/UIKit.h>

@interface CustomButton : UIButton {
}
@property (nonatomic, assign) NSInteger toggle;
- (void)buttonPressed: (id)sender;
@end


CustomButton.m

#import "CustomButton.h"

@implementation CustomButton
@synthesize toggle;
- (id) initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
//custom button code
[self addTarget: self action: @selector(buttonPressed:) forControlEvents: UIControlEventTouchUpInside];

}
return self;
}
- (void)buttonPressed: (id)sender
{
    NSLog(@"buttonPressed !!!!!");
}
@end

虽然按钮存在于我的视图控制器中,但如果我按下按钮,我会不断收到此错误 - -[UIButton buttonPressed:]: unrecognized selector sent to instance 0xb1dca50

根据我在搜索了很多答案后的理解是,当您在 IB 中对按钮进行子类化时,initWithFrame 永远不会被调用。相反,我应该使用 initWithCoder。这是正确的吗 ?如果是这样,那么我不知道 NSCoder 是什么,以及如何使用它。
我厌倦了为此寻找解决方案,请帮助我。

4

2 回答 2

0

虽然我同意您通常应该将所有目标都放在控制器层中,但请尝试一下:

- (id)initWithCoder:(NSCoder *)coder
{
    if (self = [super initWithCoder:coder])
    {
        [self customButtonInit];
    }

    return self;
}


- (id)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame])
    {
        [self customButtonInit];
    }

    return self;
}


- (void)customButtonInit
{
    [self addTarget: self action: @selector(buttonPressed:) forControlEvents: UIControlEventTouchUpInside];
}
于 2012-09-28T17:35:44.537 回答
0

我猜在 IB 中,您没有将按钮的类更改为 CustomButton。因此,它仍然是一个 UIButton。

尽管如此,我在这里支持 rdelmar,这不是一个很好的设计。您的视图控制器应该处理事件,而不是按钮本身。

于 2012-09-28T17:33:37.647 回答