来自文本的数组并显示在tableView中

时间:2016-02-12 11:44:58

标签: arrays swift swift2

我正在创建一个应用程序,在文本字段中写入一个字符串,将其保存在一个数组中。该数组显示在嵌入mainViewController的tableViewController中。情况如下。 http://i.stack.imgur.com/z5uTc.png。 我希望每当我点击绿色的“保存”按钮时,我在textField中写的字符串被保存并显示在tableView中,textField返回空,所以我可以重新编写一个字符串,它被添加到数组中。在这种情况下,tableView显示了我在同一个textField中编写的两个字符串。我试着为两个viewControllers(mainViewVC和tableVC)编写代码。

MainVC

import UIKit

class mainVC: UIViewController {
@IBOutlet var txtField: UITextField!
var embTableVC: tableVC!

override func viewDidLoad() {
 super.viewDidLoad()
 // Do any additional setup after loading the view.
}

override func didReceiveMemoryWarning() {
 super.didReceiveMemoryWarning()
 // Dispose of any resources that can be recreated.
}

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
 if segue.identifier == "embededTableVC" {
    embTableVC = segue.destinationViewController as! tableVC
 }
}

@IBAction func Save() {
 if let Text = txtField.text {
     if txtField.text == "" {
        myArray.append(Text)
        let row = myArray.count-1
        let indexPath = NSIndexPath(forRow: row, inSection: 0)
        embTableVC.myTableView.insertRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
    }
}
 txtField.text = ""
 txtField.resignFirstResponder()
}     
}

TableVC

  import UIKit

  var myArray = [String]()

  class tableVC: UITableViewController {
  @IBOutlet var myTableView: UITableView! {
didSet {
    myTableView.dataSource = self
    myTableView.delegate = self
}
}

override func viewDidLoad() {
 super.viewDidLoad()
 myTableView.dataSource = self
 myTableView.delegate = self
 myTableView.registerClass(UITableViewCell.self, forCellReuseIdentifier:   "customcell")
 // Do any additional setup after loading the view, typically from a nib.

}

override func viewDidAppear(animated: Bool) {
 super.viewDidAppear(animated)
 myTableView.reloadData()
}

override func didReceiveMemoryWarning() {
 super.didReceiveMemoryWarning()
 // Dispose of any resources that can be recreated.
 }

 override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
 return 1
  }


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

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = myTableView.dequeueReusableCellWithIdentifier("customcell", forIndexPath: indexPath) as UITableViewCell

cell.textLabel?.text = myArray[indexPath.item]

return cell
}

我写的代码不起作用。我可以在我的设备上编译和运行应用程序,但是当我点击绿色的“保存”按钮时,应用程序崩溃了。错误消息是“致命错误:在解除可选值时意外发现nil”,在“保存”IBAction中的行embTableVC.myTableView.insertRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)上。 你能帮助我吗? 非常感谢:)

1 个答案:

答案 0 :(得分:0)

只有当您转到下一个ViewController时才初始化embTableVC,但是您尝试在保存功能中访问它,而它仍然是零。

在访问它之前初始化它。