Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
558 views
in Technique[技术] by (71.8m points)

swift - xCode 7: how to fix initialization of variable was never used consider replacing with assignment to '_' or removing it

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Xcode is telling you that you are not using the constants you created.

This is a useful warning because creating a constant an never reading indicates a possible mistake in the code.

So... just use them adding this line

alert.addAction(okAction)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...