iPhoneアプリを開発しています。ナビゲーション バーの titleview をカスタム定義しました。タイトル ビューにはボタンが含まれており、ボタン クリック イベントをサポートするデリゲート メソッドも定義しています。しかし、ボタンをクリックすると、デリゲートを実行できません。なぜだかよくわかりません。以下私のコードとして:UPDelegate.h
@protocol UPDelegate <NSObject>
@optional
-(void)buttonClick;
@end
TitleView.h
#import <UIKit/UIKit.h>
#import "UPDelegate.h"
@interface TitleView :UIView
@property (nonatomic, unsafe_unretained) id<UPDelegate> delegate;
-(id)initWithCustomTitleView;
@end
TitleView.m
@synthesize delegate;
-(id)initWithCustomTitleView
{
self = [super init];
if (self) {
UIButton *titleButton = [UIButton buttonWithType:UIBUttonTypeCustom];
titleButton.frame = CGRectMake(0, 0, 20, 44);
[titleButton setTitle:@"ABC" forState:UIControlStateNormal];
// add action
[titleButton addTarget:delegate action:@selector(buttonClick) forControlEvents:UIControlEventTouchUpInside];
[self addSubview:titleButton];
}
return self;
}
私のViewControllerでは、以下のようにプロトコルを実装しています:
MyViewController.h
@interface MyViewController : UIViewController<UPDelegate>
そして.mファイルにdelegateメソッドを書きましたが実行できません。MyViewController.m
-(void)buttonClick{
NSLog("click title button");
}