Я прохожу 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
}
}