¡@

Home 

2014/10/15 ¤U¤È 10:12:34

iphone Programming Glossary: photoscroll

Image gallery and animations like Facebook

http://stackoverflow.com/questions/16780843/image-gallery-and-animations-like-facebook

int thumbHeight int photosInRow int xPos int yPos int padding int photosCount @property strong nonatomic UIScrollView photoScroll @property nonatomic strong NSArray photosArray In .m file thumbHeight 73 2px is reduced for border thumbWidth 73 2px is.. change above values according to your need. Then populate with images and creating grid layout dynamically like this photoScroll UIScrollView alloc initWithFrame CGRectMake padding padding self.view.frame.size.width self.view.frame.size.height photoScroll.showsVerticalScrollIndicator.. UIScrollView alloc initWithFrame CGRectMake padding padding self.view.frame.size.width self.view.frame.size.height photoScroll.showsVerticalScrollIndicator NO photoScroll.showsHorizontalScrollIndicator NO photoScroll setAutoresizingMask UIViewAutoresizingFlexibleHeight..