阅读&在swift中保存在数组中设置数组

时间:2015-07-03 13:08:06

标签: ios arrays swift

我尝试从我的保存设置" Mybookmarks"中加载此数组,并尝试将其写入表格中。那是在setting =>

 [["name" : "apple", "url": "http://www.apple.de"],
  ["name" : "youtube", "url": "http://www.youtube.de"]]

但它不起作用,它总是说崩溃。我想加载这种数组并将其写在tableview中。 关于如何解决这个问题的任何想法,以便它可以从我的" var defaults = NSUserDefaults.standardUserDefaults()"中读取这个。

//  ViewController.swift
import UIKit
class ViewController: UIViewController,UITableViewDelegate, UITableViewDataSource {

// create references to the items on the storyboard
// so that we can animate their properties
var tableView: UITableView  =   UITableView()

var objects = []

override func viewDidLoad() {
    super.viewDidLoad()

    var defaults = NSUserDefaults.standardUserDefaults()
    //read
    if let testArray : AnyObject? = defaults.objectForKey("Mybookmarks") {
        var objects : [NSString] = testArray! as! [NSString]
        println("\(testArray)")
    }

    tableView.frame         =   CGRectMake(0, 0, 300, view.frame.height);
    tableView.delegate      =   self
    tableView.dataSource    =   self
    tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
    self.view.addSubview(tableView)
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.objects.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier("cell") as! UITableViewCell
    let object = self.objects[indexPath.row]
    cell.textLabel?.text = object["name"]!
    return cell
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    println("You selected cell #\(indexPath.row)!")
}
}

2 个答案:

答案 0 :(得分:0)

数组的类型是字典数组[[String:String]]而不是字符串数组[String]

var objects = [[String:String]]()

...

if let testArray : AnyObject? = defaults.objectForKey("Mybookmarks") {
    objects = testArray as! [[String:String]]  
}

编辑:

并将Interface Builder中的tableview实例与IBOutlet连接起来。 您使用var tableView: UITableView = UITableView()创建的实例是一个全新的实例,它与IB中的实例不同

答案 1 :(得分:0)

没关系,我发现这不在[String:String]中。这必须是let对象: [String:String] = self.objects [indexPath.row] 现在它可以工作