let alert = UIAlertController(title: "Alert", message: "isDone", preferredStyle: UIAlertControllerStyle.Alert)
let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) { action in self.dismissViewControllerAnimated(true, completion: nil) }
the var alert
and let okAction
are error, the error message below
"initialization of variable was never used consider replacing with assignment to '_' or removing it"
I can't find the error, please help me to fix this error. Thank you!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…