2011-07-28 52 views

回答

4

您可以使用:

UITapGestureRecognizer *tgr = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(anyMethod)]; 
[imageView addGestureRecognizer:tgr]; 
[tgr release]; 

之前這樣做,使的UIImageView的用戶交互。

+1

感謝交換...它的工作 – iMincy

+1

交換和iMincy:此功能不適用於版本低於3.2的iOS。因爲在早期版本中,UITapGestureRecognizer庫不在那裏。 – Mrunal