Objectiv-C 為UIImageView,UILabel等預設沒有互動的控制項添加點擊事件,uiimageviewuilabel

來源:互聯網
上載者:User

Objectiv-C 為UIImageView,UILabel等預設沒有互動的控制項添加點擊事件,uiimageviewuilabel

在OC的UI中,一些常用的控制項如UIImageView,UILabel等預設是沒有互動的,就是在控制項上點擊,雙擊或者滑動等操作是沒有效果的。

下面的方法較為完美的解決了控制項的互動問題:

(以UIImageView為例,其他控制項類似)

首先,建立一個UIImageView:

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0,    0,  self.view.bounds.size.width, self.view.bounds.size.height)];//設定imageView圖片[imageView setImage:[UIImage imageNamed:@"first.jpg"]];//設定imageView的userInteractionEnabled為YES,即開啟互動imageView.userInteractionEnabled = YES;

然後,建立一個手勢,這裡以單擊手勢為例:

//建立單擊手勢tap,並指定處理方法為SingleClickUITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(SingleClick:)];

第三步,為imageView添加手勢

[imageView addGestureRecognizer:tap];

最後,實現單擊方法SingleClick

- (void)SingleClick:(UITapGestureRecognizer *)tap{    //通過手勢tap擷取到單擊的View    UIImageView *imageView = (UIImageView *)[tap view];        //下面就可以對單擊的View進行操作了    //注意:強轉類型時要確保正確,什麼控制項添加了手勢tap,轉型就是什麼類型}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.