は私がエラーを持っている私は、迅速な3スウィフト3解析クエリ
var nicknames = [String]()
var messages = NSArray()
var selectedmsg:PFObject!
query.findObjectsInBackground{
(objects, error) -> Void in
if error == nil
{
messages = objects! ***Cannot assign value of type '[PFObject]?' to type 'NSArray'***
for object in objects! {
self.nicknames.append(object.object(forKey: "userpointer")!.object(forKey: "nickname") as! String) ***Value of type 'Any' has no member 'object'***
}
self.selectedmsg = messages.object(at: (indexPath as NSIndexPath).row) as! PFObject
self.selectedmsg["file"]!.getDataInBackground{ ***Value of type 'Any' has no member 'getDataInBackground'***
に迅速2を更新した後のコードは、2迅速に良いことができます働いていた
***の間でコード内の3個のエラーがあります誰かが速やかに同じコードを修正するために私を助けてください3 助けていただければ幸いです。
なぜこのウェブサイトにもう答えがないのですか? – Salah
どのように解決しましたか?私は同じ問題を抱えています。これはあなたの2番目のエラーですか? – saner
@saner pastebin.comにエラーのあるコードを表示 – Salah