if (self.account.text?.isEmpty)! {
}
I just write down this function in ViewDidLoad(). (account is a textfield)
I think that 'self.account.text' can be nil, and 'self.account.text?' is okay. but I don't know why 'self.account.text?.isEmpty' require '!' - unwrapping.
'self.account.text?.isEmpty' is right, isn't it....?
I always appreciate all answers.