Can anyone please suggest alternative to this line of code so that my code becomes compatible with ARC.

[animation setTimingFunction:(CAMediaTimingFunction*)UIViewAnimationCurveEaseInOut];
link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

That code isn't correct even in MRR (non-ARC). The only reason it's not crashing is because UIViewAnimationCurveEaseInOut happens to have the value of 0 (which becomes nil after the cast).

Instead you should be using

[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];

This will do what you're intending to do, except with an actual instance of CAMediaTimingFunction*.

link|improve this answer
Thanks a lot.. It worked!!\ – CKK Nov 19 '11 at 5:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.