我正试图用NSUserDefaults
保存我的分数。我希望它保存标签文本,所以当你打开它时,文本仍然存在。我不知道代码应该去哪里。非常感谢任何帮助。
这是我的代码:
import UIKit
import AVFoundation
struct Question {
var Question : String!
var Answers : [String]!
var Answer : Int!
}
class ViewController: UIViewController {
@IBOutlet weak var highScoreLbl: UILabel!
@IBOutlet var Buttons: [UIButton]!
@IBOutlet weak var QLabel: UILabel!
@IBOutlet weak var Label: UILabel!
@IBOutlet weak var incorrectLabel: UILabel!
@IBOutlet weak var timerLabel: UILabel!
@IBOutlet weak var theEnd: UILabel!
@IBOutlet weak var continueButton: UIButton!
@IBOutlet weak var button1: UIButton!
@IBOutlet weak var button2: UIButton!
@IBOutlet weak var button3: UIButton!
@IBOutlet weak var button4: UIButton!
var scoreLbl = UILabel()
var score = Int()
var Questions = [Question]()
var QNumber = Int()
var AnswerNumber = Int()
var wrongAnswers = Int()
var highScore = 0
override func viewDidLoad() {
super.viewDidLoad()
Questions = [Question(Question: "What is the Biggest Hit of Bing Crosby?" , Answers: ["Swinging on a Star", "Now is the Hour", "White Christmas", "Beautiful Dreamer"], Answer: 2),
Question(Question: "What is Elvis Presely's Middle Name?", Answers: ["Aaron", "Micheal", "George", "Matthew"], Answer: 0),
Question(Question: "How Many Oscars did Titanic win?", Answers: ["5", "7", "10", "11"], Answer: 3),
Question(Question: "From which country did Pitta Bread originate?", Answers: ["Spain", "France", "Greece", "Russia"], Answer: 2),
Question(Question: "What is the largest living creature on Earth?", Answers: ["Whale", "Shark", "Sea Turtle", "Alligator"], Answer: 0),
Question(Question: "What does ATM stand for?", Answers: ["Automatic Treasure Machine", "Automatic Tax Machine", "Anti Tax Machine", "Automatic Teller Machine"], Answer: 3),
Question(Question: "What's the world's second largest French speaking city?", Answers: ["Paris", "Montreal", "Versailles", "Québec"], Answer: 1),
Question(Question: "What Country is the largest producer of Olive Oil?", Answers: ["Italy", "France", "Greece", "Spain"], Answer: 3),
Question(Question: "How long is the Great Wall of China?", Answers: ["3200 miles", "4000 miles", "2000 kilometers", "4500 miles"], Answer: 1),
Question(Question: "Who is on the 10 dollar bill?", Answers: ["George Washington", "Thomas Jefferson", "Alexander Hamilton", "John Adams" ], Answer: 2),
Question(Question: "How many World Series did Yogi Berra win as a player?", Answers: ["11", "10", "5", "7" ], Answer: 1),
Question(Question: "Which three countries hosted the Winter Olympics during the 1990's?", Answers: ["Norway, France, Russia", "US, Sweeden, Canada", "Japan, Canada, Germany", "Slovenia, France, South Korea" ], Answer: 0),]
scoreLbl = UILabel(frame: CGRectMake(35, 45, 77, 45))
scoreLbl.textAlignment = NSTextAlignment.Center
scoreLbl.text = "-1"
self.view.addSubview(scoreLbl)
PickQuestions()
saveHighScore()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func PickQuestions(){
score++
scoreLbl.text = "\(score)"
if Questions.count > 0{
QNumber = random() % Questions.count
QLabel.text = Questions[QNumber].Question
AnswerNumber = Questions[QNumber].Answer
for i in 0..<Buttons.count{
Buttons[i].setTitle(Questions[QNumber].Answers[i], forState: UIControlState.Normal)
}
Questions.removeAtIndex(QNumber)
}
else{
theEnd.text = "You Win!"
theEnd.alpha = 1
button1.enabled = false
button2.enabled = false
button3.enabled = false
button4.enabled = false
func reset(){
let alert = UIAlertController(title: "You Win", message: "Click Restart To Play Again", preferredStyle: UIAlertControllerStyle.Alert)
let okAction = UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil)
alert.addAction(okAction)
presentViewController(alert, animated: true, completion: nil)
}
reset()
}
saveHighScore()
incorrectLabel.alpha = 0
}
func saveHighScore(){
if score >= highScore {
highScore = score
highScoreLbl.text = "High Score: " + String(score)
}
else{}
}
@IBAction func Btn1(sender: AnyObject) {
if AnswerNumber == 0{
PickQuestions()
}
else{
incorrectLabel.text = "You are incorrect!"
incorrectLabel.alpha = 1
score--
scoreLbl.text = "\(score)"
}
}
@IBAction func Btn2(sender: AnyObject) {
if AnswerNumber == 1{
PickQuestions()
}
else{
incorrectLabel.text = "You are Incorrect!"
incorrectLabel.alpha = 1
score--
scoreLbl.text = "\(score)"
}
}
@IBAction func Btn3(sender: AnyObject) {
if AnswerNumber == 2{
PickQuestions()
}
else{
incorrectLabel.text = "You are Incorrect!"
incorrectLabel.alpha = 1
score--
scoreLbl.text = "\(score)"
}
}
@IBAction func Btn4(sender: AnyObject) {
if AnswerNumber == 3{
PickQuestions()
}
else{
incorrectLabel.text = "You are Incorrect!"
incorrectLabel.alpha = 1
score--
scoreLbl.text = "\(score)"
}
}
}
答案 0 :(得分:0)
您可以使用属性观察器来完成此操作。每次设置分数时,didSet
阻止将检查您的分数是否高于之前的分数,如果分数将会运行并将您的高分存储到您的NSUserDefaults中。
&#34;财产观察员观察并回应房产的变化 值。每次物业的价值都会调用物业观察员 设置,即使新值与属性的当前值相同 。值&#34;
有关财产观察员的更多信息:Swift Programming Language Guide
var userDefaults = NSUserDefaults.standardUserDefaults()
var score: Int = 0 {
didSet {
self.scoreLbl.text = "\(score)"
if score > highScore {
// you could just as easily call a function here
userDefaults.setInteger(score, forKey: "CurrentHighScore")
//userDefaults.synchronize() // slow and unnecessary!
}
}
}
然后在你的viewDidLoad或viewWillAppear中检索你的高分值:
override func viewDidLoad() {
self.scoreLbl.text = userDefaults.integerForKey("CurrentHighScore")
}
iOS 8及更高版本不需要同步:
来自http://www.codingexplorer.com/nsuserdefaults-a-swift-introduction/
在iOS 8应用中调用同步会不必要地减慢您的速度 计划,没有给予重大利益。我会把文件 在NSUserDefaults中谈论性能权衡:
&#34;从NSUserDefaults读取速度非常快。它会将值缓存到 避免从磁盘读取,并且需要大约0.5微秒才能完成 2012年MacBook上的 [[NSUserDefaults standardUserDefaults] boolForKey:] Pro中。这通常是不必要的(甚至是不受欢迎的,因为它 阻止获取新值)以缓存的读取结果 偏好。
但是,写入NSUserDefaults有点慢。一般来说,期待 它大致与使用NSPropertyListSerialization 一样长 将您的密钥和值转换为plist数据,再加上几十个 微秒。出于这个原因,以及内存使用情况,它通常是 最好在CFP参考中存储相对较小的数据。&#34;
答案 1 :(得分:0)
您应该将改变分数的所有内容合并到一个方法中。这对您来说更容易管理,并且可以制作更清晰的代码
func saveScore(newScore:Int){
// Set the value of newScore to the class variable score
score = newScore
// Set the value of newScore to the scoreLbl
scoreLbl.text = "\(newScore)"
// Fetch User Defauls
let userDefaults = NSUserDefaults.standardUserDefaults()
// Save newScore value to the userDefaults
userDefaults.setInteger(newScore, forKey: "score")
// Synchronize userDefaults
userDefaults.synchronize()
}
此方法将设置分数,将其放入标签并同时将分数保存到用户默认值。只要您想更新分数而不是直接更改分数值,就可以调用此方法。