- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 facebook 登录集成到我的解析应用程序中。我遵循了解析教程中提到的每一步。在下面的代码中,我遇到了编译错误。
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
line1: Parse.setApplicationId("xxx", clientKey: "yyy")
line2: PFFacebookUtils.initializeFacebookWithApplicationLaunchOptions(launchOptions)
line3: PFAnalytics.trackAppOpenedWithLaunchOptions(launchOptions)
line4: return true
}
在第 3 行 中,出现错误:
Value of optional type '
[NSObject:AnyObject]
' not unwrapped; did you mean to use '!
' or '?
'?
如果我使用“!
”手动打开它,因为 launchOptions 可以为 nil,我得到:
Fatal error: unexpectedly found nil while unwrapping an Optional value
如果我检查 nil,我得到:
NSInternalInconsistencyException
', reason: 'You must initialize PFFacebookUtils with a call to+initializeFacebookWithApplicationLaunchOptions
知道如何解决吗?
最佳答案
这是 ParseSDK 中的一个错误。在 Parse 修复此问题之前,您可以更改 PFFFacebookUtils.h 头文件中的初始化函数声明
1) 转到 PFFacebookUtils.h
2)改变:
收件人:
此答案由 Kiarash Akhlaghi 在 https://developers.facebook.com/bugs/1462780714012820/ 提供
关于parse-platform - PFFacebookUtils.initializeFacebookWithApplicationLaunchOptions(launchOptions) 给出编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29727608/
使用最新的 FB iOS SDKS 和 Parse,以及 ParseFacebookUtilsV4 pod 'FBSDKCoreKit' pod 'FBSDKShareKit' pod 'FBS
我正在尝试将 facebook 登录集成到我的解析应用程序中。我遵循了解析教程中提到的每一步。在下面的代码中,我遇到了编译错误。 func application(application: UIAp
正在开发我的第一个 iOS 应用程序(实际上是有史以来的第一个应用程序)!我正在尝试实现与 Parse 的 PFUser 一起使用的 facebook 登录屏幕。 我有一个 UIButton“使用 F
我仍在我的项目中使用 Objective-C,因为它是遗留的。我以前使用过 Parse,现在我正在尝试添加 FB 集成。我设法编译了所有内容 - 这些是我通过 CocoaPods 安装的。 Using
自从将 Facebook 更新到 v4.0.x 和最新的 Parse 库后,我的应用程序挂起,似乎是在尝试登录用户时。 我的堆栈跟踪看起来像这样: 我以前遇到过一个非常相似的问题,在这里回答:Pars
我是一名优秀的程序员,十分优秀!