xcode3.2 - Navigating autocomplete entries in XCode -
sometimes when type words, xcode offer autocomplete several options. if press enter, automatically puts curser on first option , selects when start typing part gets replaced. after that, how next option, without having double click it?
for example, if type following:
uialertview *alert = [[uialertview alloc] ini
then xcode offers autocomplete following:
uialertview *alert = [[uialertview alloc] initwithtitle:(nsstring *)title message:(nsstring *)message delegate:(id)delegate cancelbuttontitle:(nsstring *)cancelbuttontitle otherbuttontitles:(nsstring *)otherbuttontitles
everything appears above in bold highlighted, meaning replaced programmer. if press enter accept autocomplete, xcode put in above code, , select first highlighted item, (nsstring *)title. if start typing something, replaced type. when i'm done replacing this, want move directly replacing next highlighted item, in case (nsstring *)message. can double clicking on it, there kind of keyboard shortcut me directly there?
press control.
or press esc enter list of completions.
edit: aha! know mean. want control/.
Comments
Post a Comment