i need to change the UICollectionView Decoration like this image
http://cs3-3.4pda.to/2433011.jpg
need tutorial please
i found it in this tutorial
https://www.cocoacontrols.com/controls/icarousel
thanks
Related
I have a collection View and i am using Custom CollectionViewLayout for scrolling in both direction. I want to merge the first row items like in the below image,
Please help me to do this. Thanks in Advance.
Follow to this tutorial: UICollectionView Custom Layout Tutorial
I want to create image slider [Same like an bellow image].I got some example but those are not fulfilling my requirement. Please help me to solve this issue.
UICollectionView is the best choice for your task. See example here.
is in iOS5 a particular view for a "Pages" style?
Is there a certain control/UI element which I could use? I do not need the preview mode of a document, just an image and a text below it which come from an NSArray or something like similar...
I'm looking for something like this:
We use Gridviews for this - See the above mentioned AQGridView
Take a look here. It's the sample of Apple that will provide pretty much the same interface as you want.
Hope it helps
You can do it with Custom UItableview. It would give you effect like grid view.
Im little lost here,thats what i need to do:
But the tableview seems to take all the view and the image just gone...its possible to do that?
Use a UIView, put your UIImageView on the top, tableview at the bottom inside the UIView.
Yes it's possible.
Looking at your attached screenshot, it looks like you have the gist of it. That said, your question is quite vague without further details it will be unlikely people will be able to address your problem
There are 20 images.
When scrolling the UIScrollView, I want to add the image to UIScrollView (one by one). How to do this ?
Please help me to do this.
Apple have sample code that shows how to do this, called "photoscroller":
http://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?code=y&source=x&bundleID=20645
This was part of a WWDC 2010 presentation, and the accompanying video is very good at explaining why things are done like they are:
http://insideapple.apple.com/redir/cbx-cgi.do?v=2&la=en&lc=&a=kGSol9sgPHP%2BtlWtLp%2BEP%2FnxnZarjWJglPBZRHd3oDbACudP51JNGS8KlsFgxZto9X%2BTsnqSbeUSWX0doe%2Fzv%2FN5XV55%2FomsyfRgFBysOnIVggO%2Fn2p%2BiweDK%2F%2FmsIXj
1°) You need to use the contentOffset property which will indicate you where on the scrollView you are (try to do some NSLog, you should understand ;-))
2°) Then combine this property with a delegate method of UIScrollViewDelegate to know when a scroll occurred.
3°) Third in the function you calculate the images needed to be printed (with the property in the first step).
And finally you add the images !