binding - Monotouch equivalent of the "transitionWithView" method of the UIViewController iOS 5.0 class -
binding - Monotouch equivalent of the "transitionWithView" method of the UIViewController iOS 5.0 class -
i cannot find monotouch equivalent of "transitionwithview" method of uiviewcontroller ios 5.0 class.
when search in rosetta docs ( http://tirania.org/tmp/rosetta.html ) find this:
selector: transitionfromview:toview:duration:options:completion: method: void transition (uiview fromview, uiview toview, double duration, uiviewanimationoptions options, [nullallowed] nsaction completion); selector: transitionwithview:duration:options:animations:completion: method: void transition (uiview withview, double duration, uiviewanimationoptions options, [nullallowed] nsaction animation, [nullallowed] nsaction completion);
is documentation outdated? because when seek such method in monodevelop cannot find overload "transition". seems implementation in monotouch binding "transitionfromview" selector. signature wrong: doesn't take nulls , requires additional uicompletitionhandler parameter. there i'm missing? thanks.
the first selector you're finding rosetta part of uiview
not uiviewcontroller
.
is documentation outdated?
no. while rosetta not (yet) part of official documentation date , sec selector maps right binding method.
because when seek such method in monodevelop cannot find overload "transition".
i did not have issue using monodevelop code completion transition
on uiviewcontroller
instance (note it's not overload - normal method).
the signature wrong: doesn't take nulls , requires additional uicompletitionhandler parameter.
please study missing bindings or errors in binding in http://bugzilla.xamarin.com tested/fixed asap (and give notification when prepare made).
is there i'm missing?
ensure using uiviewcontroller
object (e.g. not uiview
) when trying utilize transition
method. create sure have latest monotouch (5.0+) , monodevelop.
binding uiviewcontroller ios5 monotouch transition
Comments
Post a Comment