iphone - Subviews on UIImagePicker? -


i wondering: in apple's "photos" app, when user wishes share more 1 photo, or can tap on individual thumbnails, , check in red circle appear on top of each one, indicating they've been selected sharing. there way mimic behavior in our apps? somehow inserting subviews on thumbnails, perhaps...? in advance.

you can't affect thumbnail views on uiimagepicker, you'll have implement yourself. should pretty straightforward:

  • uiscrollview container
  • a uiview descendant each tile, containing
    • uiimageview subview display thumbnail
    • uibutton clickable checkmark

make sure create thumbnails of images , cache them, , don't shy away uiimageview - heavily optimized.

there great sample app in wwdc sample code re: uiscrollview should give starting point.


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -