标签:命名 let frame 视图控制器 tab 原因 uitable hit bounds
运行后界面空白,Xcode跳转到APPDelegate.swift文件提示如下
做输出口后在代码中重新命名了输出口
右键控件关闭输出口的连接,变回+号,将它重新连到代码的var...处松开。
或者直接删除代码代码重新做输出口。
修改了ViewController.swift文件的父类的继承
原class CustomCell: UITableViewCell
后class CustomCell: UITableTableViewCell
AppleDelegate文件指定ViewController视图控制器:
self.window = UIWindow(frame: UIScreen.main.bounds)
self.window?.backgroundColor = UIColor.white
self.window?.rootViewController = ViewController()
self.window?.makeKeyAndVisible()
标签:命名 let frame 视图控制器 tab 原因 uitable hit bounds
原文地址:https://www.cnblogs.com/editwe/p/9379304.html