I am trying to do something that I thought would be simple
I want to do a slide show that goes through the images in the iPhone photo library (without showing the thumbnail picker). Just open the slide show and have cycle through the images full size.
2 Answers
See the code below
var css = { backgroundColor : '#FFFFFF', type : 'ImageView', images : [], duration : 1000, repeatCount : 0 }; var slideShow = Ti.UI['create' + css.type](css); var images = ['1.jpg,', '2.jpg']; slideShow.images = images; slideShow.start();
- read from libraryvia api and put the images in array
- create a scrollable view and put images into
Your Answer
Think you can help? Login to answer this question!