0

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

私のコードの何が問題になっていますか?

4

1 に答える 1