XCode 4 停止突出显示并识别项目中的 UIKit 类
您好,我遇到了 xCode 4 的问题。
我在家里和工作中使用 XCode4 开发项目。
我将其存储在我的 USB 闪存驱动器上。
今天我遇到一些问题。
我打开 xib 文件以将插座添加到代码中,并收到下一个错误“无法插入新的插座连接:找不到名为...的类的任何信息” 类存在并且 xib 文件的属性设置正确。 无法插入新的插座连接:找不到名为的类的任何信息
好的,我想,我编写代码并使用文件所有者进行连接。
下一步我打开 .h 类文件的代码编辑器并尝试编写 UI...但什么也没看到。我没有得到 UI 类型的类列表
接下来我看到 XCode 代码编辑器没有突出显示 UIKit 和其他框架的类。
但我在其他项目和它的项目上没有这个错误,但在家庭计算机上。
有些身体有同样的问题吗?
Hi i get problem with xCode 4.
I develope project with XCode4 on home and on work.
And i store it on my USB flash drive.
Today i get some problem.
I open xib file for add outlet to code and get next error "Could not insert new outlet connection: Could not find any information for the class named ..."
Class exist and property of xib file setted correctly.
Could not insert new outlet connection: Could not find any information for the class named
Ok, think i, i write code and the connect using Files owner.
Next step i open code editor of .h class file and try to write UI... and see nothing. i dont get list of classes UI types
Next i saw what XCode code editor does not highlighting classes of UIKit and else frameworks too.
But i dont have this error on another projects and on it project but on home computer.
Some body have same problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:关闭你的项目。选择窗口>主菜单中的组织者。选择“项目”面板。从列表中选择并删除项目的所有副本。再次打开项目(Xcode 将重建必要的信息)。
这不会删除您的项目,但会删除 Xcode 发现的有关您项目的索引和其他信息。正如我所说,只要您重新打开项目,Xcode 就会重建信息。
Try this: Close your project. Choose Window > Organizer from the main menu. Select the Projects panel. Select and delete all copies of your project from the list. Open the project again (Xcode will rebuild the necessary information).
This will not delete your project, but the index and other information Xcode discovers about your project. As I said, Xcode will rebuild the information as soon as you re-open the project.
我们遇到了非常相似的问题,但没有任何帮助起作用。最终解决这个问题的方法是从 xcode 中删除 .m 和 .h 文件(仅限资源),然后将它们从项目文件夹拖回项目中。它似乎重新连接了一切并使其再次发挥作用。
We had a really similar problem happen to us and none of the help out there worked. What did end up fixing it was deleting the .m and .h file from xcode (resource only) and then dragging them back into the project from the project folder. It seemed to relink everything and make it work again.
只需在“编译源”下添加 .m 文件
即可解决问题。
Just add .m files in Compile Sources under:
It fix the problem.
我注意到 .m 文件已移至 en.lproj 文件夹内。
只需从 Xcode 中删除(仅供参考).m 文件并将 .m 从 en.lproj 中移出。
再次添加。别担心,您将恢复所有连接。
它将解决这个问题。
I noticed that .m file was moved inside en.lproj folder.
Just delete (reference only) the .m file from the Xcode and moved .m out of the en.lproj.
Add it again.Don't worry, you will get all your connections back.
It will fix the issue.