For example, when I print
[UIView commitAni
then I would expect him to end it like this:
[UIView commitAnimations
so that I have:
[UIView commitAnimations]
but here it is not. Although I have included CoreGraphics.framework Strange: when I try to use other animation related things, it works:
[UIView setAnimationDura
will be completed before:
[UIView setAnimationDuration:<#(NSTimeInterval)#>
But this will not be recognized using codeSense:
[UIView setAnimationTr
... here, I would expect completion
[UIView setAnimationTransition
but this does not happen. What could be the problem here? I don’t think that I am missing the included structure because everything compiles and works well in the iPhone simulator.
source
share