2011-07-27 127 views
0

我正在開發一個應用程序。因爲我想爲imageview設置圖像。所以當iam單擊imageview時,那時候只有庫會打開。爲此,我使用下面的方法。但是圖書館將在每點擊每個地方。如何從庫中設置imageview的圖像,然後單擊imageview?

-(void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event. 

但是我想打開圖書館,當我只點擊imageview only.Please告訴我如何解決這一個。

回答

0

myImageView.userInteractionEnabled = YES然後用UITapGestureRecognizer

0

使用蘋果官方文檔中的TapDetecingView。 TapDetectingView 然後創建一個子類爲TapDetectingView並僅包含圖像視圖的視圖。最後,實現該方法:

  • (無效)tapDetectingView:(TapDetectingView *)視圖 gotSingleTapAtPoint:(CGPoint)tapPoint;
0

我認爲這是不可能的 不如試試其他人的選擇....

相關問題