必须说这个错误让我疯了,我的智慧结束了。我想说我已经阅读了大量关于如何解决这个错误的文章,我已经实现了给出的解决方案,而且这个错误仍然存在。
以下是我正在使用的一些信息
Facebook iOS sdk v4.7.1 解析iOS sdk 1.9.1 Xcode版本7.1.1 Swift 2.1
我已经看过关于plist的各种解决方案,据我所知,我已经多次更新了我的plist,正确的凭据。这是我的整个plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.9.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb1679166828968529</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.9.1</string>
<key>FacebookAppID</key>
<string>1679166828968529</string>
<key>FacebookDisplayName</key>
<string>Student Kitchen</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbapi</string>
<string>fb-messenger-api</string>
<string>fbauth2</string>
<string>fbshareextension</string>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>akamaihd.net</key>
<dict>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>facebook.com</key>
<dict>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>fbcdn.net</key>
<dict>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
</dict>
</dict>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
我将Facebook和Parse导入到我的项目中。在我的AppDelegate.swift文件和Viewcontroller.swift文件中,我在顶部导入了以下内容。
import UIKit
import Parse
import ParseFacebookUtilsV4
import FBSDKCoreKit
import FBSDKLoginKit
我关掉了bitcode。我已经完成了我读过的所有内容,但这个错误仍然存在。任何帮助将不胜感激。
我还想指出,我知道Facebook说这是一个可以忽略的错误。但是这不适用于我的情况。我试图启动Facebook登录界面登录我的应用程序,模拟器启动并立即进入白屏,它不会切换到Facebook登录因为这个错误这就是为什么我不能忽视它。我也无法尝试在我的手机上运行应用程序,因为它是iPhone 4并且正在运行iOS 7,我正在努力确保这适用于iOS 9.同时降级Facebook或解析sdks中的版本也不是一种选择。< / p>
我也多次重置模拟器的内容和设置。
提前感谢任何可以提供帮助的人,我看到很多人有同样的错误,但没有适当的解决方案,我相信他们一定会感激我。