Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode object type popup equivalent in AppCode?

Tags:

xcode

ios

appcode

Does AppCode have an equivalent for the Xcode feature below to show the object type? I found this popup quite helpful when trying to identify optionals.

(option + click)

enter image description here

like image 318
Clement Avatar asked Feb 11 '26 00:02

Clement


1 Answers

Similar actions in AppCode are:

  • Quick Documentation (F1): shows type, declaration and documentation, if any
  • Quick Definition (Option+Space): shows where and how the variable is defined
  • Cmd+Mouse hover - shows a small pop-up
like image 197
goldwin-es Avatar answered Feb 12 '26 15:02

goldwin-es