For example, when I type
[UIView commitAni
then I would expect that it finishes it like:
[UIView commitAnimations
so that I have:
[UIView commitAnimations];
but here, it doesn't. Although I have included CoreGraphics.framework Strange: When I try with other animation related stuff, it works:
[UIView setAnimationDura
will be completed to:
[UIView setAnimationDuration:<#(NSTimeInterval)#>
But this one will not be recognized by codeSense:
[UIView setAnimationTr
...here, I would expect an completion to
[UIView setAnimationTransition
but it doesn't happen. What could be the problem here? I don't think that I miss an included framework, because everything compiles well and works in the iPhone simulator.