XCode 在自动完成中没有提供任何有用的信息
在旧版本的 Xcode 中(Xcode 4.1 之前),按 ESC 将提供一个非常有用的自动完成窗口,包括任何可用方法的返回值。然而,在 XCode 4.1 中,按 ESC 会提供一个不太有用的自动完成帮助程序。它不给出方法的返回值,只列出当前文件中已经使用过的方法和变量。有没有办法恢复更有用的旧功能?
In older versions of Xcode (before Xcode 4.1), hitting ESC would give a very useful autocomplete window, including the return value of any methods available. However, in XCode 4.1, hitting ESC gives a much less useful autocomplete helper. It dos not give the return value of methods, and only lists methods and variables which have already been utilized in the current file. Is there a way to get back the old functionality, which was much more useful?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试删除保存项目索引信息(项目中使用的类和方法)的派生数据文件夹,然后重新打开项目。这样做会启动 Xcode 的索引器。
派生数据文件夹的路径可以在管理器的 (Cmd+Shift+2) 项目选项卡中找到。
Try deleting derived data folder which holds the project's index information (classes & methods employed in the project) and reopening the project. Doing so will kick in the indexer of Xcode.
Path to derived data folder can be found in Organizer's (Cmd+Shift+2) Projects tab.