我的UIImagePickerController
中的单元格上显示了这个黑色背景
以下是我的演讲方式。这里没有火箭科学:
let imagePicker = UIImagePickerController()
imagePicker.allowsEditing = false
imagePicker.delegate = self
imagePicker.modalPresentationStyle = .Popover
imagePicker.sourceType = UIImagePickerControllerSourceType.PhotoLibrary
imagePicker.popoverPresentationController?.sourceView = self.view;
presentViewController(imagePicker, animated: true, completion: nil)
显然我只想要白色背景.....?
答案 0 :(得分:0)
为了将来参考,这个应用程序正在使用外观管理器,并全局将所有UITableViewCells设置为黑色,如下所示:
UITableView.appearance().backgroundColor = .blackColor()