Xcode报错记录

2018-09-29  本文已影响0人  CoderLGL

一、 library not found for -lXXX

解决方案:
从Xcode9中找到动态库lstdc++.6.0.9.tbd文件copy到Xcode10下就可以完美解决问题。或者用古老的办法将iOS12的DeviceSupport文件copy到Xcode9.4下也可以完美解决Xcode9运行iOS12的问题。

实际操作

  1. 从Xcode9中找到动态库lstdc++.6.0.9.tbd;
    链接: https://pan.baidu.com/s/1pWdduPhaUp3oDF69GcNo9Q 提取码: sunj
  2. 需要将文件复制到下述四个路径下,才能保证模拟器和真机均好用
真机加这个就够了
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/

二、iPhone is busy: Preparing debugger support for iPhone

解决方案:
等10-15分钟。安心等待是最好的方法

三、Expected a type

解决方案:
导入#import <UIKit/UIKit.h>

上一篇下一篇

猜你喜欢

热点阅读