UIbuttonにイベントを追加しようとしています:
UIButton *btn = [[UIButton alloc] init];
[btn setBackgroundImage:[UIImage imageNamed:@"aa.png"]
forState:UIControlStateNormal];
[btn addTarget:self
action:@selector(Presed:)];
そして私はこの警告を受けています:
"UIButtom may not respond to addTarget:action"
このボタンを作成しているインターフェイスは、CDVPlugin
私のコードの何が問題になっていますか?