tags:

views:

80

answers:

1

Hello everyone

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

A: 

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.

Jasarien