当前位置 : 主页 > 手机开发 > ios >

ios – 当屏幕旋转时ReloadData()

来源:互联网 收集:自由互联 发布时间:2021-06-11
当你转动我的设备屏幕时,我无法更新我的自定义视图. 我试着这样做: override func viewDidLoad() { super.viewDidLoad() var myCustomView = Customview() self.view.addsubview(myCustomView) } } override func didRotateFr
当你转动我的设备屏幕时,我无法更新我的自定义视图.

我试着这样做:

override func viewDidLoad() {
        super.viewDidLoad()


       var myCustomView = Customview()

       self.view.addsubview(myCustomView)
        }
    }

    override func didRotateFromInterfaceOrientation(fromInterfaceOrientation: UIInterfaceOrientation) {

        // Reload Data here

        self.view.reloadData() // Incorrect

    }

但是让我错误:

方法“UIView”没有名为reloadData的方法

override func didRotateFromInterfaceOrientation(fromInterfaceOrientation: UIInterfaceOrientation) {

    // Reload Data here

    self.view.reloadData() // Incorrect

}

UIView不是UITableView,它没有开箱即用的reloadData方法.

您可以手动实现此方法 – >玩得开心 :)

网友评论