Cannot invoke initializer for type 'Double' with an argument list of type '(String?)'

后端 未结 3 2025
轻奢々
轻奢々 2020-12-06 10:58

I have two issues:

let amount:String? = amountTF.text
  1. amount?.characters.count <= 0

It\'s giving error

3条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-06 12:03

    Your string is optional because it had a '?", means it could be nil, means further methods would not work. You have to make sure that optional amount exists then use it:

    WAY 1:

    // If amount is not nil, you can use it inside this if block.
    
    if let amount = amount as? String {
    
        let am = Double(amount)
    }
    

    WAY 2:

    // If amount is nil, compiler won't go further from this point.
    
    guard let amount = amount as? String else { return }
    
    let am = Double(amount)
    

提交回复
热议问题