Can anyone please suggest alternative to this line of code so that my code becomes compatible with ARC.
[animation setTimingFunction:(CAMediaTimingFunction*)UIViewAnimationCurveEaseInOut];
|
feedback
|
|
That code isn't correct even in MRR (non-ARC). The only reason it's not crashing is because Instead you should be using
This will do what you're intending to do, except with an actual instance of | ||||
|
feedback
|