我在Swift写作,所以我找不到足够的信息来解决这个问题。
无论如何,我的一切工作正常,即:照片库选择视图显示,编辑工作正常,裁剪图像导出到图像视图。
我的问题是视频以模态呈现,标题为“照片”。如何将其更改为其他内容?
var imagePicker = UIImagePickerController()
imagePicker.navigationItem.title = "MY TITLE"
更改标题文字属性有效,但不会更改标题本身。
答案 0 :(得分:3)
让自己成为imagePicker的代表并实施:
func navigationController(navigationController: UINavigationController, willShowViewController viewController: UIViewController, animated: Bool) {
viewController.navigationItem.title = "asdf"
}
在此处找到:Changing NavigationBar Title of UIImagePickerController
答案 1 :(得分:0)
雨燕4
func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {
viewController.navigationItem.title = "asdf"
}