Why does the CodeSense Xcode function only work occasionally?

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.

+3
source share
5 answers

(Clang) CodeSense. http://www.openradar.appspot.com/7338181

" " " " , . , .

+4

( , , ) Cmd-. " " "Cmd-", " " ", - "? , , , , Cmd-, .

+2

, codeSense , ESC , , .

CodeSense: , ; ) ] - .

+1

, , , , , , . , .

0

xcode3.1.3 iphone 3.0 sdk. Codesense , UIScreen mainScreen. UIScreen main(). .

0

Source: https://habr.com/ru/post/1706067/


All Articles