作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Xcode-Swift 中的这段代码中收到此错误“无法转换为 PFUserResultBlock”:
有谁知道我为什么会收到此错误?
最佳答案
匹配PFUserResultBlock
的typedef
typedef void (^PFUserResultBlock)(PFUser *PF_NULLABLE_S user, NSError *PF_NULLABLE_S error);
请将您的代码更改为
PFTwitterUtils.logInWithBlock { (user: PFUser?, error: NSError?) -> Void in
以便遵守 PF_NULLABLE_S
注释。
关于ios - 一小段代码 Swift 错误 : not convertible to PFUserResultBlock,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33138046/
谁能说出为什么会发生这个错误,当我按修复它时,它会添加“as!PFUserResultBlock”,如果我再次按修复它,她会再次添加“as!PFUserResultBlock”,感谢关注) 最佳答案
我在 Xcode-Swift 中的这段代码中收到此错误“无法转换为 PFUserResultBlock”: 有谁知道我为什么会收到此错误? 最佳答案 匹配PFUserResultBlock的typed
我是 swift 和编程的新手,但我正在尝试检索检查用户是否可以登录,我相信我做了 Parse 建议的操作,但是我收到了这个错误,我不确定为什么.这是我的代码 PFUser.logInWithUse
我是一名优秀的程序员,十分优秀!