Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我该如何解决这样的警告?在大多数情况下是什么意思?
当我点击它时,我的 Interface Builder 上没有任何突出显示(它只是放大了 2 个视图控制器之间的某个区域)。
你有一个 UIImageView在 Xcode 中的Highlighted设置为 true。Xcode 告诉您该值适用于所见即所得,但在运行时不起作用。
在查看了我了解的警告消息详细信息后,但仍然没有办法,我可以找到特定的图像highlighted="YES"
highlighted="YES"
@Keller在已接受答案的评论中建议的完美技巧。
只需右键单击您的 Storyboard --> Open As --> Source Code。
搜索
高亮=“是
只需将 YES 设置为NO。
或者事件如果你仔细查看搜索字符串周围的代码,你可以在哪个 ViewController 的 Scene 中获得特定的 ImageView。
感谢@凯勒
右键单击您的Storyboard -> Open as -> Source Code。搜索突出显示的 = "YES"。检查图像的名称。在Storyboard上找到图像。单击图像,转到Show the Attributes inspector。取消选中突出显示的选项
突出显示的图像