I have view with a I can't just remove the UITapGestureRecognizer after I received it's tap. Because with it the new view can also be removed. Means I want a behavior like the fullscreen vide controls.
| |||
feedback |
67 | You can set your controller or view (whichever creates the gesture recognizer) as the delegate of the
| ||
'iPhone dev. > UIView, UITableView' 카테고리의 다른 글
TableViewCell Default Font (0) | 2012.02.19 |
---|---|
UITableViewController를 UIViewController로 바꿀 때 참고 (0) | 2011.11.16 |
UIView를 UIImage로 캡쳐하기 (0) | 2011.06.01 |
void
so it doesn't leave any information behind at runtime to use for detection. But what you can do is walk up the view hierarchy, testing forUIControl
, and returningNO
if you find any controls. – Kevin Ballard Aug 3 '11 at 17:38