試圖更改UIStatusBarStyle
的UIImagePickerController
文本顏色。嘗試了以下內容:如何更改UIImagePickerController視圖的UIStatusBarStyle文本顏色
imagePicker.navigationBar.isTranslucent = false
imagePicker.navigationBar.barTintColor = .darkGray
imagePicker.navigationBar.tintColor = .white
imagePicker.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName : UIColor.white]
This答案顯示爲指定,即使承運人的標誌和UIStatusBarStyle
也改變它的顏色。但它並沒有改變。有沒有其他的東西可以嘗試在UIImagePicker
中使UIStatusBarStyle
文字顏色變化?
嘗試下面的代碼,正在爲其他UIViewController
小號
imagePicker.preferredStatusBarStyle = UIStatusBarStyle.lightContent
imagePicker.setNeedsStatusBarAppearanceUpdate()
但不工作。請幫助。謝謝。
工作就像一個魅力!謝謝。 –