Is it possible to customize UIImagePickerController?
When using UIImagePickerController to browse a folder, I hope to customize UIImagePickerController as below
in thumbnails mode, place a customized subview (includes a Label and a button) under each thumbnail.
Is it possible?
If not, is there any other third party's free or comercial framework can do this?
开发者_开发技巧Thanks
interdev
In short, no. The UIImagePickerController is a black box user interface provided by the SDK. It should not be subclassed or modified. Doing so may cause your app to be rejected during review.
You might be able to accomplish this with Three20's TTThumbsViewController which you should be able to modify without risking Apple's wrath.
精彩评论