簡體   English   中英

不能對“Auth”類型的非可選值使用可選鏈

[英]Cannot use optional chaining on non-optional value of type 'Auth'

var loggedInUser: User?

let storageRef = Storage.storage().reference()
let databaseRef = Database.database().reference()


// structure definition goes here
override func viewDidLoad() {
    super.viewDidLoad()

    self.loggedInUser = Auth.auth()?.currentUser//Cannot use optional chaining on non-optional value of type 'Auth' 

    self.databaseRef.child("user_profiles").child(self.loggedInUser!.uid).observeSingleEventOfType(.Value) { (snapshot:DataSnapshot) in //'observeSingleEventOfType(_:withBlock:)' has been renamed to 'observeSingleEvent(of:with:)'

        self.name.text = snapshot.value!["name"] as? String//Type 'Any' has no subscript members
        self.handle.text = snapshot.value!["handle"] as? String//Type 'Any' has no subscript members

        //initially the user will not have an about data

        if(snapshot.value!["about"] !== nil)
        {
            self.about.text = snapshot.value!["about"] as? String
        }

        if(snapshot.value!["profile_pic"] !== nil)//Type 'Any' has no subscript members
        {
            let databaseProfilePic = snapshot.value!["profile_pic"]
                as! String//Type 'Any' has no subscript members

            let data = NSData(contentsOfURL: NSURL(string: databaseProfilePic)!)

            self.setProfilePicture(self.profilePicture,imageToSet:UIImage(data:data!)!)
        }

        //self.imageLoader.stopAnimating()
    }
    // Do any additional setup after loading the view.
}

var loggedInUser = AnyObject?()//this code was giving me an error 
//Cannot invoke initializer for type 'AnyObject?' with no arguments

然后我把它切換到:

var loggedInUser: User?// still giving me errors

Auth.auth()?.currentUser替換為Auth.auth().currentUser

auth()返回一個非可選類型,所以你不能使用它的可選鏈接。

看看它的文檔,它返回一個類型為Auth而不是Auth?的對象Auth? .

1-您應該像這樣聲明用戶

var loggedInUser: FIRUser?

然后在viewDidLoad賦值

loggedInUser = Auth.auth().currentUser

2- snapshat.value的類型為Any所以你需要

let value = snapshot.value as! [String:Any]  // you can do [String:String]  if all values are strings 
self.name.text = value["name"] as! String
self.handle.text = value["handle"] as! String

3-不要使用NS (使用Data而不是NSData )東西並避免contentsOfURL

let data = NSData(contentsOfURL: NSURL(string: databaseProfilePic)!)

在加載遠程 url 時會阻塞主線程,請考慮使用SDWebImage

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM