UIScrollView is a core iOS development component used to build generic scrolling and zooming user interfaces.
1
vote
2answers
119 views
Two scrollView should move together in single touch in any one scrollView
I am working on UIScrollView and I'm new in programming.
How to scroll two UIScrollView simultaneous in one touch in any one scrollView
if I scroll 1st scrollView then 2nd scrollView should also move ...
5
votes
4answers
5k views
How to embed a UITableView in a UIScrollview
How can I do the following in a UIViewController (containing a tableview as a subview)
I initially have a UIViewController showing a preview section (UIView)
//Setup container for preview section
...
0
votes
1answer
52 views
How to Drag/Drop objects inside a UIScrollView using a UIPanGestureRecognizer?
I've seen similar questions here, but I haven't seen a solid answer to my question directly.
I have a UIScrollView that contains a UIImageView object. That view can be zoomed in to view more details ...
0
votes
2answers
25 views
UIScrollView Implementation
Using Storyboards, I have a UITabBarController with a UIScrollView inside, with a UIView inside the scrollView. My view is very large, and does not completely fit in the storyboard. I am not able to ...
3
votes
3answers
836 views
UIPageControl not visible when combined with UIScrollView
I'd like to make use of a page control to switch between several viewControllers. I have the following viewController whose associated nib contains a UIScrollView and a UIPageControl. I've placed the ...
0
votes
1answer
286 views
Fast custom animation using CADisplayLink causes stroboscopic effect. How to avoid it?
Scenario:
Horizontally scrolling UIScrollView with reused page views (so that there are only few page viewcontrollers which are being reused similar way like UITableView cells). So that they are able ...
0
votes
1answer
39 views
UIScrollView doesn't scroll after upgrading to iOS7 / xcode 5
I have an app which in xcode 4.5 and ios 6.1 worked perfectly fine when scrolling.
However, after downloading xcode 5 and iOS 7 my scroll views does not work anymore.???
Here is my .h file:
#import ...
0
votes
0answers
8 views
UIScrollview Dynamic content size is very off based on number of items
I have a vertical scrollview with thumbnail images to act as a "side panel" for specific items on an ipad app.
Here's my code to set the content size:
- ...
0
votes
1answer
18 views
Horizontal UIScrollView in a UITableViewCell
I'm trying to create a simple scrollView inside a tableview cell. Just like on app store, but with simpler scrolling.
The scrollview is showing up but its not scrolling at all. I've tried whole ...
0
votes
0answers
9 views
Passing horizontal scrolling down to a UICollectionView
I've got a UICollectionView with a horizontally left-to-right scrolling flow layout. Each cell is the size of the whole screen.
I want to be able to overlay a UIScrollView (possibly a UITableView), ...
-1
votes
0answers
41 views
How to resize UILabel in code [duplicate]
I have got a UILabel which is placed in between two UITableViews inside a scrollview.
What I want is to resize the UILabel height depending upon the total text , which gets generated at runtime.
I ...
0
votes
1answer
14 views
UIScrollView With Multiple UIViews
I am trying to use a UIScrollView to scroll through a few UIViews but it is not scrolling. I've set it all up in interface builder. Can anyone offer any ideas?
0
votes
0answers
7 views
How to get contentView centered within UIScrollView when zooming with Auto-Layout turned on?
I have this structure with Auto-Layout turned on:
-UIViewController : UIView (self.view)
-----UIScrollView (_scrollView)
--------UIView (CATiledLayer, _tiledView)
I have to render a large map image ...
0
votes
0answers
13 views
Detect Horizontal Scrolling Direction of UIScrollView
I have the need to detect whether a UIScrollView is scrolling left or right in scrollViewDidScroll
I have the following code:
NSInteger *lastOffset = 0;
-(void)scrollViewDidScroll:(UIScrollView ...
1
vote
2answers
24 views
How can I implement infinite list with custom views as rows in iOS? [on hold]
I know that it is a common pattern in iOS applications to implement feeds for example. Here is a screenshot from official VK iOS application:
As you see it is an infinite scrollable list where ...