我正在为期30天的课程学习SWIFT 4.2,并且入门项目的表格视图每天展示30个应用程序。因此,有特定于一天的情节提要。
代码如下:
import UIKit
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet weak var tableView: UITableView!
var dataModel = NavModel.getDays()
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: UIBarButtonItem.Style.plain, target: nil, action: nil)
}
// MARK: uitableview delegate and datasource
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
print ("This is dataModel.count: ", dataModel.count)
return dataModel.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! ContentTableViewCell
cell.data = dataModel[indexPath.row]
print(cell.data!)
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let dayCount = dataModel[indexPath.row].dayCount
print("This is dayCount: ", dayCount)
let initViewController = UIStoryboard(name: "Day\(dayCount)", bundle: nil).instantiateInitialViewController()
self.navigationController?.pushViewController(initViewController!, animated: true)
}
}
如何更新此代码段:
let initViewController = UIStoryboard(name: "Day\(dayCount)", bundle: nil).instantiateInitialViewController()
如果应用无法找到尚不存在的特定情节提要,以防止应用崩溃?
这是NavModel.swift的代码:
import UIKit
class NavModel {
var dayCount: Int
var title: String
var color: UIColor
init(count: Int, title: String, color: UIColor) {
self.dayCount = count
self.title = title
self.color = color
}
class func getDays() -> [NavModel] {
var model = [NavModel]()
for i in 1...30 {
let nav = NavModel(count: i, title: "Day (i)", color: UIColor.randomFlatColor())
model.append(nav)
}
return model
}
}
答案 0 :(得分:2)
您无法防止该代码崩溃。找不到参考的情节提要是无法捕获的致命错误。
在测试过程中,您需要了解与捆绑在一起的故事板。
适当的解决方案是更改数据模型,以使其仅包含您拥有情节提要的数据。也就是说,如果今天是第10天,则NavModel.getDays()
应该只返回10个数据项。
I 会将NavModel
重新写为:
import UIKit
struct NavModel {
let dayNumber: Int
var title: String {
get {
return "Day \(dayNumber)"
}
}
let color: UIColor
static func getDays(count: Int) -> [NavModel] {
var model = [NavModel]()
for i in 1...count {
model.append(NavModel(dayNumber: i, color: UIColor.randomFlatColor()))
}
return model
}
}
然后创建模型,例如NavModel.getDays(count:10)