UINavigationBar autoresizing

前端 未结 8 2023
忘了有多久
忘了有多久 2020-12-08 11:39

In my app, I got a UINavigationController. Unfortunately, when I rotate the device and the interface orientation changes, the UINavigationBar doesn\'t change its height. In

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 12:31

    (void)viewWillLayoutSubviews {
          self.navigationItem.titleView.bounds = self.navigationController.navigationBar.bounds;
    }
    

提交回复
热议问题