私は、UIButton クラスを割り当てようとしている UIViewController クラスを持っています。これがサンプルコードです。
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 とは何か、どのように使用できるのかわかりません。
これに対する解決策を探すのにうんざりしています。助けてください。