user1067866
user1067866

Reputation: 25

UIScrollView Hittest function in monotouch

I am having a problem with my UIScrollView,I want to implement a safari like scroll view with paging. I've used this link UIScrollView horizontal paging like Mobile Safari tabs As my refrence, all what I am missing right now is how to implement the hittest method. I am using monotouch and I can't find any proper documentation on how to accomplish this.

Upvotes: 1

Views: 818

Answers (2)

Jason
Jason

Reputation: 89129

From the MT Rosetta Stone:

Selector: hitTest:withEvent:    
Method: UIView HitTest (PointF point, UIEvent uievent);

Upvotes: 1

Related Questions