It cannot be because of "private" in relation to loose binding IMHO, I just
made a gesture handler private and had no issue on current MT.

The problem is probably (again, IMHO), *when* the selector is initialized. 
I would not recommend creating selectors in the constructor of a view
controller, but instead create them in the ViewDidLoad() override. This
makes sense to me, in that you are adding a recognizer to a view, not
necessarily a view controller - I'm guessing the selector is lost when the
view controller loads and the View is instantiated.

I've not declared/defined a selector in a view controller constructor -
where I do routinely declare such selectors in the constructor for UIView
subclasses - for view controllers I declare such things in the ViewDidLoad
override and have no issues.  I'm guessing that's the issue here.



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Failed-to-find-selector-tp4655349p4655508.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to