0

我正在尝试在数字上创建一个数组,并让用户将它们保存在他们的设备上。然而,当数据被保存(通过使用NSUserDefaults方法)时,它被转换为一个[AnyObject]数组。我需要将其转换为[Int]. 这是我目前的处理方法:

class ProgressViewController: UIViewController {
  let kUserDefault = UserDefaults.standard
  var chartData = [Int]()
  override func viewWillAppear(_ animated: Bool) {
    let weighting = UserDefaults.standard.array(forKey: "chartData")
    footer1.text = "\((weighting))"
}
  @IBAction func AddGraphComponent(_ sender: UIButton) {
    var weighText:UITextField!
let alert = UIAlertController(title: "Enter new Weight!", message: "Please enter your Weight, followed by the date in which your weight was recorded", preferredStyle: UIAlertControllerStyle.alert)
alert.addTextField { (weighText) in
    weighText.placeholder = "Weight"
    weighText.keyboardType = UIKeyboardType.numberPad
}
alert.addTextField { (dateText) in
    dateText.placeholder = "Date (MM/YY)"
}
let confirmAction = UIAlertAction(title: "Save", style: UIAlertActionStyle.default) { (_) in
    let field = alert.textFields![0] as? UITextField
    let weigh = alert.textFields![1] as? UITextField

        if (field?.text)! == "" || (weigh?.text)! == "" {
            let alert1 = UIAlertController(title: "Error!", message: "Please fill in BOTH fields", preferredStyle: UIAlertControllerStyle.alert)
            alert1.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
            self.present(alert1, animated: true, completion: nil)
        }else {
            print((field?.text)!,(weigh?.text)!)
            let dataInt:Int = Int((field?.text!)!)!
            self.chartData.append(dataInt)
            self.chartLegend.append((weigh?.text)!)

            self.kUserDefault.set([self.chartData], forKey: "chartData") //as? [Int]
            self.kUserDefault.set([self.chartLegend], forKey: "chartLegend")
            self.kUserDefault.synchronize()
}
}
alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel, handler: nil))
alert.addAction(confirmAction)
self.present(alert, animated: true, completion: nil)
 }

我试过let weightData: Int = weighting as [Int]但它崩溃说致命错误我试过print("\(weighting?[0] as! Int)")但它崩溃说Could not cast value of type '__NSCFArray' (0x109f6ae88) to 'NSNumber' (0x108df0300).

当我尝试

let weighting = UserDefaults.standard.array(forKey: "chartData") as! [Int]
print("\((weighting[0]))")

我的应用程序崩溃说Could not cast value of type '__NSCFArray' (0x108190e88) to 'NSNumber' (0x107016300)

有没有办法将保存的数组从转换[AnyObject][String][Int]

4

1 回答 1

0

在行

self.kUserDefault.set([self.chartData], forKey: "chartData")

您正在保存一个类型的对象,[[Int]]因为chartData它已经是一个数组。

去掉括号

self.kUserDefault.set(self.chartData, forKey: "chartData")
于 2016-11-23T15:44:28.503 回答