我的按鈕如下UIButton的自定義視圖 - addTarget:動作:forControlEvents:不工作
- 創建LABEL1
- 創建LABEL2
- 創建customView(
UIView
) - 添加label1和label2自定義視圖
- 創建myCustomButton(
UIButton
) - 在myCustomButton上添加customView
我已經爲custom_View,label1和label2做了userInteractionEnable。
然後加入
[myCustomButton addTarget:self action:@selector(OnButtonClick:) forControlEvents:UIControlEventTouchUpInside];
而且
-(void)OnButtonClick:(UIButton *)sender
{
}
但上述功能,甚至當我觸摸按鈕永遠不會被調用。任何解決方案
請把您的相關代碼放在這裏? – 2013-05-08 13:56:10