Reputation: 1128
I am trying to get some way to get callback on long press event. I don't know if there is any support provided by the IPHONE sdk for this.
Do i have to design this functionality by my own or is there anything i am missing to do it.
Upvotes: 0
Views: 432
Reputation: 23722
iOS 3.2 and later supports UILongPressGestureRecognizer
(documentation).
Upvotes: 2