简体   繁体   中英

change background color of UIImagePickerController

I am new in xcode, so help me out please. how can we change background color to UIImagePickerController? i want to change it to black color?

Thanks in advance..

Apple文档中无法更改。

Typically you change the background color of a view (UIView) by setting its backgroundColor variable to a UIColor object: self.view = [UIColor blackColor];

However, the UIImagePickerController is not intended to be modified. If you do, your app will be rejected from the app store.

A solution would be to use the Three20 implementation of an image picker: TTThumbsViewController, which you can modify to your hearts content.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM