Tagged Questions

UIScrollView is a core iOS development component used to build generic scrolling and zooming user interfaces.

learn more… | top users | synonyms

29
votes
2answers
12k views

how do I use UIScrollView in Interface Builder?

While I've used UIScrollView successfully in the past by manipulating it programmatically, I'm having trouble getting it to work by setting it up exclusively in Interface Builder. I have a simple ...
28
votes
7answers
27k views

UIScrollView image/photo viewer with paging enabled and zooming

OK, I think it's time to make an official place on the internet for this problem: How to make a UIScrollView photoviewer with paging and zooming. Welcome my fellow UIScrollView hackers. I have a ...
26
votes
4answers
1k views

Custom Scrollbar for iPhone's UIView (Making Long Scrolls Not Suck)

In a post, Making Long Scrolls on the iPhone Not Suck, Aza Raskin describes an alternative scrollbar control that's better at getting around on very long pages: It's not important that the ...
24
votes
12answers
12k views

Center content of UIScrollView when smaller

I have an UIImageView inside a UIScrollView which I use for zooming and scrolling. If the image/content of the scroll view if bigger than the scroll view everything works fine. However, when the image ...
19
votes
11answers
9k views

Scrolling with two fingers with a UIScrollView

I have an app where my main view accepts both touchesBegan and touchesMoved, and therefore takes in single finger touches, and drags. I want to implement a UIScrollView, and I have it working, but it ...
18
votes
14answers
16k views

UIScrollView : paging horizontally, scrolling vertically?

How can I force a UIScrollView in which paging and scrolling are on to only move vertically or horizontally at a given moment? My understanding is that the directionalLockEnabled property should ...
17
votes
3answers
1k views

In iOS 4.0, why does UIScrollView zoomToRect:animated: not trigger the scrollViewDidScroll or scrollViewDidZoom delegates while animating?

I need to closely monitor the scale of the scroll view so that I can update the content view's elements (a subview managing multiple CALayers) according to the scroll view's animated zoom. On iOS ...
16
votes
5answers
6k views

Paging UIScrollView in increments smaller than content size

I have a scroll view that is the width of the screen but only about 70 pixels high. It contains many 50 x 50 icons (with space around them) that I want the user to be able to choose from. But I always ...
15
votes
3answers
2k views

UIScrollView pauses NSTimer until scrolling finishes

While a UIScrollView (or a derived class thereof) is scrolling, it seems like all the NSTimers that are running get paused until the scroll is finished. Is there a way to get around this? Threads? A ...
14
votes
2answers
2k views

Predicting the resting offset in a UIScrollView after deceleration

I would like to be able to predict the final resting offset within a UIScrollView after a flick gesture. It doesn't need to be pixel-accurate, but close enough so that the user does not perceive a ...
13
votes
4answers
6k views

UIScrollView - showing the scroll bar

Possibly a simple one! Does anyone know how to get the scroll bar of a UIScrollView to constantly show? It displays when the user is scrolling, so they can see what position of the scroll view they ...
13
votes
5answers
6k views

UIScrollView. Any thoughts on implementing “infinite” scroll/zoom?

So, UITableView supports essentially "infinite" scrolling. There' may be a limit but that sucker can scroll for a looonnnggg time. I would like to mimic this behavior with a UIScrollView but there are ...
13
votes
4answers
10k views

Are there any good UIScrollView Tutorials on the net?

Any good links are highly appreciated! This goes to community wiki.
13
votes
7answers
22k views

iPhone UIScrollview with UIButtons - how to recreate springboard?

I'm trying to create a springboard-like interface within my app. I'm trying to use UIButtons added to a UIScrollView. The problem I'm running in to is with the buttons not passing any touches to the ...
12
votes
3answers
911 views

Rounded UIScrollView Peformance

This runs great on iPhone 4 and 3GS: scrollView.layer.cornerRadius = 11; scrollView.layer.masksToBounds = YES; But on iPhone 3G and iPod touch 2nd gen, it makes scrolling really jerky. I know there ...
12
votes
4answers
25k views

Learning the basics of UIScrollView

I've been having a very hard time finding good examples of UIScrollView. Even Apple's UIScrollView Suite I find a bit lacking. I'm looking for a tutorial or example set that shows me how to create ...
12
votes
4answers
19k views

how to remove subviews from scrollview?

how do i remove all subviews from my scrollview... i have a uiview and a button above it in the scrollview something like this.... here is my code to add subview in scroll view ...
11
votes
4answers
2k views

Adding a header view to a UIWebView similar to Safari and Articles

I'd like to add a header view to an UIWebView similar to the address/search bar in MobileSafari and the excellent Articles.app by Sophia Teutschler. More precisely, I'd like to create a "pull to fix ...
11
votes
3answers
13k views

how to disable horizontal scrolling of scrollview iphone?

I have a view like iphone's springboard. I have created it using a UIScrollView and UIButtons. I want to disable horizontal scroling on that view. I want only vertical scrolling. How do i do this?
11
votes
5answers
7k views

How to detect when a UIScrollView has finished scrolling

UIScrollViewDelegate has got two delegate methods scrollViewDidScroll: and scrollViewDidEndScrollingAnimation: but neither of these tell you when scrolling has completed. scrollViewDidScroll only ...
11
votes
6answers
15k views

UIScrollView scroll to bottom programmatically

How can I make a UIScrollView scroll to the bottom within my code? Or in a more generic way, to any point of a subview?
11
votes
7answers
11k views

Photos app-like gap between pages in UIScrollView with pagingEnabled

UIScrollView in paging mode assumes the pages are located right next to each other, with no gap. However if you open a photo in the Photos app and swipe through photos, you can see that it has some ...
10
votes
3answers
1k views

UIKit: UIScrollView automatically scrolling when a subview increases its width past the edge of the screen

In the context of the iPhone: I have a UIScrollView containing a UIImage. When the user taps the screen inside the UIImage, a UITextField is added where the user touched. The user can edit this ...
10
votes
2answers
392 views

ios - how to find what is the visible range of text in UITextView?

how to find what text is visible in a scrollable, non-ediable UITextView? for example i may need to show next paragraph, then i want to find the current visible text range and use it to calculate the ...
10
votes
2answers
2k views

UIScrollview getting touch events

How can I detect touch points in my UIScrollView? The touches delegate methods are not working.
10
votes
2answers
6k views

What's the UIScrollView contentInset property for?

Can someone explain to me what the contentInset property in a UIScrollView instance is used for? And maybe provide an example? thanks, fbr
10
votes
4answers
8k views

Optimized Image Loading in a UIScrollView

I have a UIScrollView that has a set of images loaded side-by-side inside it. You can see an example of my app here: http://www.42restaurants.com. My problem comes in with memory usage. I want to lazy ...
10
votes
8answers
9k views

Programmatically force a UIScrollView to stop scrolling, for sharing a table view with multiple data sources

I have a UITableView whose data source and delegate are switched between a couple of custom data source objects when the user touches a segmented control (think "Top Paid" vs "Top Free" in the app ...
9
votes
3answers
1k views

iOS5, UIScrollView and layoutSubviews behaviour

In my app (code very similar to Apple's PhotoScroller demo from WWDC10), I have a UIScrollView. Within the scroll view I have overwridden layoutSubviews with code like: - (void) layoutSubviews { ...
9
votes
3answers
457 views

Problem UIScrollView pagingenabled in IOS 3.1.3

I have set paging property of scroll view to 'scrollview.pagingEnabled = YES'. When tested it seems to be working in IOS 4 and above but it is not working on iOS 3.1.3. Can any one help me with this? ...
9
votes
2answers
5k views

Horizontal UIScrollView inside a UITableViewCell

I'm trying to create the exact same effect as in the AppStore app for viewing screenshots: inside a UITableView, I have custom subclasses of UITableViewCell's. One of them is designed to show previews ...
9
votes
5answers
2k views

Is it possible to tile images in a UIScrollView without having to manually create all the tiles?

In the iPhone sample code "PhotoScroller" from WWDC 2010, they show how to do a pretty good mimmic of the Photos app with scrolling, zooming, and paging of images. They also tile the images to show ...
9
votes
2answers
4k views

UIScrollView not scrolling

I have a UIScrollView which contains many UIImageView's UILabel's etc... the labels are well longer that the UIScrollView, but when I run the app, I cannot click and scroll down... Why might this be? ...
9
votes
1answer
4k views

How can I get the UITableView scroll position so I can save it?

Is there any way to find out which UITableViewCell is at the top of the scroll window? I'd like to get the current scroll position so that I can save it when the app exits. When the app gets ...
9
votes
4answers
6k views

UIScrollView with pages enabled and device rotation/orientation changes (MADNESS)

I'm having a hard time getting this right. I've got a UIScrollView, with paging enabled. It is managed by a view controller (MainViewController) and each page is managed by a PageViewController, its ...
9
votes
2answers
12k views

Android: ScrollView Problem

I have had a number of problems with ScrollViews. Recently I tried to create a LinearView which content exceeds the screen size so I created the new layout with parent element ScrollView and set its ...
9
votes
3answers
7k views

Getting the visible rect of an UIScrollView's content

How can I go about finding out the rect (CGRect) of the content of a displayed view that is actually visible on screen. myScrollView.bounds The code above works when there's no zooming, but as soon ...
9
votes
6answers
22k views

How do I center a UIImageView within a full-screen UIScrollView?

In my application, I would like to present the user with a full-screen photo viewer much like the one used in the Photos app. This is just for a single photo and as such should be quite simple. I just ...
9
votes
5answers
11k views

How to Cancel Scrolling in UIScrollView

I use UIScrollView to make large-sized (larger than 320px) UI on iPhone. I made an instance of UIScrollView and added some subviews on it. The problem is that I want to enable scrolling only when ...
8
votes
4answers
439 views

Unwanted scrolling when animating zoomScale in UIScrollView

Executive Summary: At times UIScrollView makes an unwanted change to the value of contentOffset, thus causing the app to display the wrong location in the document being viewed. The unwanted change ...
8
votes
1answer
790 views

How to reuse/recycle custom custom element like uitableviewcell does?

When using UITableView, we can reuse its cells using [[ UITableViewCell alloc] initWithStyle: reuseIdentifier:] and [uiTableViewInstance dequeueReusableCellWithIdentifier:] methods. This helps keep ...
8
votes
1answer
1k views

Make UIScrollView wrap around

I have a UIScroll which has eight or so pages. My aim is for them to 'loop' around so that when the user reaches the last page the first page will be the next page (and vice versa) so that the user ...
8
votes
5answers
9k views

UIScrollView works as expected but scrollRectToVisible: does nothing

HI. I have used UIScrollView before, and am using it now, and never had a problem. I'm now adding it to an old app, and while it works as expected (I can look at the contents, scroll around with my ...
8
votes
9answers
16k views

UIScrollView with centered UIImageView, like Photos app

I would like to have scroll view with an image content view. The image is actually map which is much bigger than the screen. The map should be initially in the center of the scroll view, like photos ...
7
votes
2answers
315 views

iOS UI development: approach to building document “selector” screen

I'm looking to build a document "selector" screen, similar to Pages and Numbers on the iPad/iPhone: I come from a WPF background and have some iOS experience. That being said, I'm looking for a good ...
7
votes
2answers
1k views

Detecting UIScrollView page change

Is there a way to detect or get a notification when user changes the page in a paging-enabled UIScrollView? pom
7
votes
4answers
1k views

Disable UIScrollView scrolling when UITextField becomes first responder

When a UITextField, embedded in a UIScrollView becomes first responder, by lets say the user typing in some character, the UIScrollView scrolls to that Field automatically, is there any way to disable ...
7
votes
1answer
533 views

NSURLRequest won't fire while UIScrollView is scrolling

I have a problem in that I am trying to background load a sound file while the user moves around a UIScrollView... The problem is that I am using NSURLRequest so I can load in the background, but even ...
7
votes
3answers
1k views

How to reset UIWebView's zoom? I'm already using scalesPagesToFit = YES;

I've been looking for the past week for the answer to this question. I have a UIWebView, inside of a UIScrollView. Everything works great, but I want the content of the UIWebView to reset its zoom, ...
7
votes
3answers
1k views

UIScrollview calling superviews layoutSubviews when scrolling?

I added a UITableView as a subview to a custom UIView class I'm working on. However I noticed that whenever I scroll the table it calls my classes layoutSubviews. I'm pretty sure its the UIScrollview ...

1 2 3 4 5 51