Repeat scroll items in UIScrollView to change the UIViewController like Gilt - iphone

I do want to repeat scroll items in UIScrollView to change the UIViewController like Gilt.How can I do please ? Thanks in advance.

try this.SSRollingButtonScrollView

Related

UIScrollView inside UITableViewCell With horizontal Paging on IPad

i am trying to make tableview with custom cell . every cell have uiscrollview inside it and page control .. how can i do that ?? any idea ?
thx in advance. this video may help Press Here
Put a UIScrollView on your tableViewCell.contentView and enable paging.

scrollsToTop on UIScrollView did not work

I've set up scrollTopTop property in my UIScrollView to YES however, when I tap on my status bar it didn't work. Why is this?
I have a UIViewController called A and inside A I have a UIViewController B, which has the UIScrollView. Is this the reason why it's not working?
Make sure of somethings:
Scrollview is at the front.
Make sure it's re-enabled after you add/remove your status bar.
There is only one scrollview because many of them will prevent it from scrolling to top.
Make sure that B view at front as well of A view.
Sorry but the question has to have more details so that we can help :)
UIViewController B should be added in UIViewController A.
like this, when you added b.view in a, you should add this code :
[self addChildViewController:b]
I had an app where scrollsToTop was working. Later on, I added a UICollectionView and scrollsToTop stopped working. After tracking down the offending revision I had to set UICollectionView.scrollsToTop = NO. I overlooked the fact that UICollectionView also inherits from UIScrollView.

Position of UITableView of UITalbeViewController

How can i customize the Vertical postion of UITableView of UITableViewController.I am trying to show the table(3 cells) at the middle of the window . My class is inheriting UITableViewController class. Please someone give me suggestions. or Alternative ways to do this.
Thank You.
Try to create an UIViewController, and put an UITableView in it. I think you can set the origin.y of the tableView. Make sure to set the UITableView's datasource and delegate. Good luck.

How to scroll to UITextField placed into a UITableView

I've got an UIScrollView with an UIImageView at the top and an UITableView.
inside every cell of the UITableView I've placed a UITextField
I would like to know how I can automatically scroll to the UITextField selected so that it doesn't go under the keyboard
I've already looked at this Get UITableView to scroll to the selected UITextField and Avoid Being Hidden by Keyboard but it doesn't works very well for my situation..
could you help me?
Thank You!
Check out Matt Gallagher's fantastic Sliding UITextFields around to avoid the keyboard. It ought to be just what you need. You can modify it to only scroll a specific element, or just leave it as is to scroll the whole superview.

Accessing superview ScrollView?

i added some views (every view has its own viewcontroller and nib) to an UIScrollView. How can I access the ScrollView from within the UIViews I've added?
self.view.superview doesn't get me the UIScrollView properties. I need to disable scrollEnabled from within an UIView.
Thank you!
Maybe try (UIScrollView*)(self.view.superview).property to access the property you want :-)
It should work.
But maybe with an Delegate it would be better :-p
Good Luck !