Issue with iphone sdk 4.2.1(iphone sdk 4.2.1 的问题)
问题描述
可能是一个愚蠢的问题.在调试模式下在设备上运行我的项目时,我收到很多警告,并带有以下字符串:
Probably a silly question. When running my project on the Device in the debug mode I get a lot of warnings al having the following string:
警告:无法读取符号/Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.2.1(8C148a)/符号/系统/库/PrivateFrameworks/
warning: Unable to read symbols for /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.2.1 (8C148a)/Symbols/System/Library/PrivateFrameworks/
我认为这是由于4.2.1"和(8C148a)"之间的空格.我怎样才能摆脱它?它必须是 Xcode 中某处的设置.
I think its due to the space between "4.2.1" and "(8C148a)". How can i get rid of it? It must be a setting somewhere in Xcode.
我在模拟器上没有这些警告.
I dont have these warnings on the simulator.
提前感谢,克里斯蒂安
推荐答案
我在 4.2.1 (8C148a) 中遇到了这个问题,我认为这是由手机和 XCode 中的不同 DeviceSupport 文件引起的.我尝试了很多事情,但最终通过删除此文件夹解决了它:
I had this issue with 4.2.1 (8C148a), which I believe is caused by differing DeviceSupport files on the phone and in XCode. I tried many things, but eventually resolved it by deleting this folder:
/Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.2.1 (8C148a)/
/Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.2.1 (8C148a)/
在此之后,我插入了我的 iOS 设备并被要求从设备连接和恢复符号文件,它又可以正常工作了.
After this I plugged in my iOS device and was asked to connect and restore the symbol files from the device, and it worked normally again.
这篇关于iphone sdk 4.2.1 的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iphone sdk 4.2.1 的问题
基础教程推荐
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
