I am trying to use
transitionFromView
Which is a class method on UIView as of iOS 4. All of the following methods return false in the 4.2 simulator:
[UIView respondsToSelector:@selector(transitionFromView:)]
[UIView respondsToSelector:@selector(transitionFromView)]
[[UIView class] respondsToSelector:@selector(transitionFromView)]
[[UIView class] respondsToSelector:@selector(transitionFromView:)]
Other articles on Stack suggest that one of the first two methods should have returned true. What is the appropriate way to test for this method so it will not crash when runing iOS 3?
Thanks.