1. 程式人生 > >解決Button加到ImageView上後Button 無法響應單擊事件的方法

解決Button加到ImageView上後Button 無法響應單擊事件的方法

imageview預設是不響應事件的 ,所以即使在上邊加上個button也不會響應

解決辦法是:將這個imageview.userInterfaceEnabled  =   YES;  手動設成YES,再次執行,OK!!!

imageView.userInteractionEnabled = YES;