iOS給UIView新增點選事件

2022-08-02 06:42:10 字數 466 閱讀 6834

我要給乙個uiview物件topview新增點選事件,方法如下:

步驟1:建立手勢響應函式

1

(void)event:(uitapgesturerecognizer *)gesture

2

步驟2:建立手勢

1 uitapgesturerecognizer * tapgesture = [[uitapgesturerecognizer alloc] initwithtarget:self action:@selector(event:)];

步驟3:給view新增手勢

1

//設定需要連續點選幾次才響應,預設點選1次

2[tapgesture setnumberoftapsrequired:1];

34 [topview addgesturerecognizer:tapgesture];

給UIImageView新增點選事件

uiimageview imageview1 uiimageview alloc initwithframe cgrectmake 125,50,229,229 imageview1 setimage uiimage imagewithcontentsoffile path imageview1.u...

ISO給UIImageView增加點選事件

自己做了乙個九宮格,裡面的圖示都是由多張重疊構成,然後包裝成乙個button來使用 遇到的問題是如何給這個 button 增加點選事件?解決思路1 提示在該 button 上增加乙個真正的透明button,這樣就可以順利執行點選事件了 但是本人嘗試發現,如果我調整了button的透明度後,點選是沒有...

(二)AS給button新增點選事件

三種方法給button新增點選事件 一 通過button的id,新增繼承view.onclicklistener的監聽實現 button android id id btn button2 android text 按鈕2 android layout width match parent andr...