0

https://ton.twimg.com/syndication/twitterkit/ios/3.1.1/Twitter-Kit-iOS.zip

我通过此链接手动安装 TwitterKit 3.1.1。

但无法加载到模拟器,“无法安装此应用。”

也无法加载到设备(iPhone),“应用程序安装失败。无法写入设备。”

如何解决?

请指教...

4

2 回答 2

1

这个问题源于ishkawa提到的不正确的设置。我想完整地发布整个错误,以防其他人遇到问题:

来自:~/Library/Logs/CoreSimulator/coresimulator.log:

: installApplication:withOptions:error:: Error Domain=IXUserPresentableErrorDomain Code=1 “此时无法安装此应用程序。” UserInfo={NSLocalizedDescription=此时无法安装此应用,NSUnderlyingError=0x7f83c58969c0 {Error Domain=MIInstallerErrorDomain Code=11 "Bundle at path /Users/userName/Library/Developer/CoreSimulator/Devices/08FE45B1-C973-45B4- 816F-443BD6060102/data/Library/Caches/com.apple.mobile.installd.staging/temp.9KckPp/extracted/Payload/TwitterPart2.app/Frameworks/TwitterCore.framework 在其 Info.plist 中缺少或无效的 CFBundleExecutable" UserInfo= {LegacyErrorString=MissingBundleExecutable, FunctionName=-[MIExecutableBundle _validateWithError:], SourceFileLine=78,

问题是 TwitterCore 是嵌入的。

  1. 打开应用程序的 Xcode 项目或工作区。
  2. 转到应用程序目标的常规配置页面。
  3. 从 Embedded Binaries 部分删除 TwitterCore.framework。
于 2017-12-19T23:15:30.520 回答
0

我猜你不小心嵌入了 TwitterCore。在我的情况下,从嵌入式二进制文件中删除 TwitterCore 解决了这个问题。

实际上,文档说:

  • 仅嵌入 TwitterKit。
  • 链接 TwitterKit 和 TwitterCore。

确认您正确设置了项目。

于 2017-11-27T06:30:19.883 回答