我正在尝试从UIPickerView选择转到UITableViewController。当用户选择年份时,应该转到UITableView以显示给定年份的驾驶员身份列表。我遇到的问题是UINavigationController不是rootViewController。当我以编程方式生成UITableViewController时。如果是这样,我知道我会在AppDelegate中实现此代码
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
window?.makeKeyAndVisible()
window?.rootViewController = UINavigationController(rootViewController: StandingTableViewController())
return true
}
这是不正确的,因为它将直接进入UITableViewController。下面是UIPickerView的代码。
extension seasonViewController: UIPickerViewDelegate, UIPickerViewDataSource {
func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
return seasons.count
}
func numberOfComponents(in pickerView: UIPickerView) -> Int {
return 1
}
func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
return seasons[row]
}
func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
selectedSeason = seasons[row]
seasonTextField.text = selectedSeason
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "getStanding" {
let standingVC = segue.destination as! StandingTableViewController
standingVC.standing = seasonTextField.text!
}
}
这是TableViewController的代码。
class StandingTableViewController: UITableViewController {
var standing = ""
let SEASON_URL = "https://ergast.com/api/f1"
var champions: [DriverStanding] = []
override func viewDidLoad() {
super.viewDidLoad()
navigationController?.title = standing
fetchJSON(standing: standing)
}
我试图避免在情节提要中执行此操作。还是在这种情况下我必须在情节提要中创建UITableView?只是让您知道UIPickerView是TabView应用程序的一部分。抱歉,此后添加。不知道这是否会改变答案。 任何帮助将不胜感激。
答案 0 :(得分:0)
从图像中看,您好像在情节提要中使用了简单的UIViewController
并将其设置为StandingTableViewController
的类,而该类是UITableViewController
的子类。
因此,您得到的是正常的UIView
而不是UITableView
的{{1}}。
要修复此问题,请在情节提要中删除控制器,然后添加新的view
,并将其课程设置为UITableViewContoller