How to create a horizontal scroll in iphone app - iphone

i want to create view like, i have more than 20 icons on top and i want to chose icons with horizontal scroll but i am very much concerned about how to create horizontal scroll view in my application.
i appreciate your time , please help me on this with any examples.

I suppose you need the horizontal scroll as in this following app demo,
Sky News App
I am also trying the same, here are my reference, hope this is useful to you,
thread -
//stackoverflow.com/questions/822792/how-to-create-a-horizontal-scrolling-view-on-iphone
demo with sample code -
//blog.sallarp.com/iphone-sliding-menu/
If I got the solution first, i will give you.
If you got it first, pls let me know. :)

Just put it in a UIScrollView.

As isharan said, addSubviews to UIScrollView and setContentSize for UIScrollView.

transform the tableview

Related

ViewController animation like zooming and zooming out

I have a CustomGridView with UIView for images, if i click on an image It should be show in another viewcontroller with Zoomin Transition (It should show like it comes out from the grid), when i closing that it should animate like it goes back to the same place like Zoomout effect,
I searched for this i unable to find the library that suited my needs, can somebody suggest how can i achieve this
I have just created an example project for you.
https://github.com/khuong291/100DaysOfSwift (Project 53)
Hope this help.
Looks like you are searching for JTSImageViewController
See:
https://github.com/jaredsinclair/JTSImageViewController

UIScrollView with multiple images

How to show current image in the scroll view along with some part of the next image if next image is available in the scroll view and also some part of the previous image if a previous image is available
Like the pic attached here
This specific pattern makes me remind of iCarousal.Check it
You need to make use of UIScrollView with paging enabled in order to implement your requirements.
the following link provides example for the same.
http://developer.apple.com/library/iOS/#samplecode/PageControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007795
Here is the link that provides information on how to go about scrollView with paging enabled.
http://developer.apple.com/library/iOS/#documentation/WindowsViews/Conceptual/UIScrollView_pg/ScrollViewPagingMode/ScrollViewPagingMode.html
Try this demo for your scrollview effects.
cover-flow-demo
CoverFlow
HM-Customized-ScrollView
Here is a good tutorial.Please find the same it will be useful for you
Hope this helps.

How can set circular automatic scroll view?

How to make the circular automatic scroll view, In the scrollview if the last image reached then once again start the first image continuously scrolling. Any sample source code for this task.
Please help me. Thanks in advance.
i just create a demo of it may be its helps you this is a screen shot:-
this is a Demo link hope its helps you
http://www.sendspace.com/file/2yz9dn
In the Apple documentation you can find an example about how to accomplish this, take a look here, specially to the InfiniteScrollView class

Scrollable grid-like view

I'm writing an app with a view that has a grid of images (3x3) and it needs to have infinite scroll per row and per column with snap to position, very similar to the 'Design Museum Collection' app. How would I go about implementing this view? Is there a library that already supports this? I would like to implement this natively in IOS. Can I use UIScrollView or do I need to create this bidirectional scroll view from scratch. Here is a video of the 'Design Museum Collection' app (http://vimeo.com/39260302).
Thanks in advance!
It's been quite a while since your question but as I've been struggling with the same thing I'm gonna answer it for future reference...
Sadly I could not find a good solution anywhere so after a lot of hours of experimenting I came up with this: https://github.com/AlvinNutbeij/DWGridController
It's still a work in progress but very usable for your purpose I'd say!
See the tutorial How To Make An Interface With Horizontal Tables Like The Pulse News App. It will guide you through the basics.
you can check this out: AQGridView.

iPhone Tile View

Does anyone know how to create an icon tile layout similar to that of the Application tile view, where I can hold down an icon and sort them. This is also similar to the home screen of the Facebook application.
Is there a special UI control that I can use, or will I have to create this manually? If so, how would I do that?
Help is very appreciated!
Joe Hewitt's Three20 library has a "Launcher View" that does exactly what you need.
http://github.com/joehewitt/three20
You could also use MyLauncher, if you prefer something other then the Three20 giant.
http://github.com/Jarada/myLauncher