为什么控制流不进入@selector(methodname)?

时间:2010-03-10 03:34:06

标签: iphone uibutton selector

我为按钮操作编写了一些代码。首先我要创建一个按钮"UI",其onAction应该在ButtonListener的{​​{1}}中呼叫@selector。但它似乎没有进入addTarget方法。

这是我的代码:

@selector(UIButtonListener)

1 个答案:

答案 0 :(得分:0)

尝试

[UIButton_G_obj addTarget:self action:@selector(UIButtonListener:) forControlEvents:UIControlEventTouchUpInside];

-(void)UIButtonListener:(id)sender