为什么我的ViewController在iOS 7.1中缩小但在iOS 8.3中运行良好?

时间:2015-05-08 01:47:14

标签: ios iphone uiviewcontroller storyboard

http://ipeiwei.xyz/images/issue1.png

为什么不完整?它在每台设备上都像iOS 8.3中的魅力,在iPhone 4S上就像iOS 7.1一样,但在大型设备(iphone 5,6,6 +)上使用iOS 7.1,如图所示。 我使用storyboard,它继承自UIViewcontroller;部分代码如下:

    class AlumnusViewController: UIViewController {

        var tableView:UITableView!
        override func viewDidLoad() {
            tableView = UITableView(frame: view.bounds, style: UITableViewStyle.Plain)
            tableView.registerNib(UINib(nibName: "AlumniCell", bundle: nil), forCellReuseIdentifier: "AlumniCell")
            tableView.dataSource = self
            tableView.delegate = self
            view.addSubview(tableView)
        }
}

我创建了一个在iOS 5S 7.1中运行的新单视图应用程序;问题仍然存在。

1 个答案:

答案 0 :(得分:0)

为了让您的应用能够在iPhone 5及其上正确显示6,您必须包含适当大小的启动映像或使用LaunchScreen.xib。