Tagged Questions

6
votes
7answers
3k views

How to lock the horizontal scrolling of a scrollView in iOS

i have a scrollView. i want it to scroll only in one direction(VERTICAL). Is there a way in which i can lock the horizontal scrolling...?? ...
6
votes
2answers
1k views

How to show a PDF page by page using horizontal swipe in iphone?

I want to create a page by page PDF reader. I know how UIWebView can be used to show the PDF but It will load the entire PDF and want to show one page at a time. The PDF is stored locally. Next and ...
3
votes
5answers
3k views

iPhone Horizontal Scrolling Table

I need to create a view on the iPhone that scrolls horizontally through a gallery of images. The issue is that this gallery has the potential to have 100s to 1000s of images that needs to be ...
2
votes
3answers
1k views

Horizontal Scrolling UITableView - Caveats?

Would it be as simple as applying a rotation transform? I'm willing to manage the content of my cells with a rotation transform.
2
votes
1answer
3k views

How to implement UITableView with multiple columns and sideways scrolling

I'm thinking about how I could achieve this kind of UITableView: http://snapplr.com/c1x5 So it has multiple (separately selectable) columns in it which also differ in width. Apart from that it can ...
1
vote
0answers
93 views

BUG when autorotating interfaces with horizontal scrolling UITableView

In one of the screens of my application, I've implemented a horizontal scrolling tableview. The method of choice was to apply a 90 degree rotation to the tableview, and then rotating each cell -90 ...
1
vote
1answer
483 views

How to show a PDF page by page using horizontal swipe in iphone?

I would like to add to my app a pdf viewer which can scroll horizontally. Anyone know how to do it? I'm making several attempts but without success. Thanks. Matteo
1
vote
2answers
659 views

how to set horizontal scrolling in UITableView by using interface builder?

I have UITableView in my app with 2 columns.I can read column 1 and half of column 2.My questions are- can we add horizontal scroll by use of interface builder in uitableview so i can read column 2 ...
1
vote
2answers
474 views

How to manually slide to specific item in TTTabStrip (put selected to the center or make content offset)

So question is: How to manually slide to specific item in TTTabStrip (put selected to the center or make content offset) @interface TTT : NSObject { TTTabStrip* _slider; } @implementation TTT ...
1
vote
4answers
7k views

How to create a horizontal scroll in iphone app

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. ...
0
votes
1answer
56 views

Best way for horizontal scrolling of image

what is the best way for horizontal scrolling of image in iphone sdk. Image has to be get from web server something like lazy loading? please help me.
0
votes
2answers
266 views

parallax scrolling cocos2d

I've seen many tutorials but not similar with what I'm trying to build... Creating a parallax view with 3 sprites (background, layer 1, layer 2) //Adding a like this CCSprite *sprite = ...
0
votes
0answers
55 views

Vertical Swipe in ppt document [iPhone]

I want to open a ppt document in my iphone app. which i did from this link . Displaying ppt, doc, and xls in UIWebView doesn't work but pdf does it is working perfectly, Now I want to implement ...
0
votes
1answer
33 views

webpage in the landscape mode of iPhone

I want to lock the horizontal scroll of my webpage in mobile Safari. Specifying the width n height in background.js fixed the problem for iPad : if(B.msie<=8 || B.iPad) (function() { var ...
0
votes
2answers
161 views

Can we add a scroll view inside UITableViewCell?

I have requirement where I have to show some images which are differentiated according to Groups they belong to. I have used a table view to view images listed under groups. User has to scroll ...
0
votes
0answers
60 views

What's stopping my site scrolling on the iPad/iPhone?

I have a gallery-esc type site that has horizontal scrolling. This is done by adding tables with this jQuery; <script type="text/javascript" charset="utf-8"> $(function(){ ...
0
votes
1answer
486 views

How to only disable the horizontal scrolling of UIwebView from within the iPhone app?

I am making a iPhone app that needs to make a UIwebview that can only scroll vertically(I need to disable to the horizontal scrolling), I can't really do it from the website because that's not in my ...
0
votes
2answers
427 views

how can we horizontally scroll tableview in iPhone SDK?

I want to scrolltableview horizontally as well as vertically How can I do it? Please Help and Suggest. Thanks
0
votes
3answers
1k views

iPhone Horizontal Scrolling

I am trying to create an app with horizontal scrolling, so that one would be able to scroll horizontally through a series of images. I watched the WWDC Session 104 video on this, and while they made ...
0
votes
2answers
869 views

iPhone, How to enable horizontal scrolling

I am new to Xcode and iPhone SDK. I want to make a paging enabled horizontal scrolling. But I can't do that, only vertical scrolling.
0
votes
2answers
710 views

left to right scrolling in landscape and addSubView

My comic book app is up and running but with a few things missing. 1) I want to have the images scroll from left to right, but I have the app automatically set itself up to landscape mode upon ...
0
votes
1answer
427 views

Does anyone have a good way to scroll text off to one side, like a stock ticker in a label on a nib in an iphone app?

I want to scroll text starting on the right and make it smoothly move to the left and off the screen. Does anyone have an example of something they tried that worked? Thank You.