UIScrollView is a core iOS development component used to build generic scrolling and zooming user interfaces.
-1
votes
1answer
27 views
Communication between Subview Controller and Superview Controller in a ScrollView
So, I have a View with a UIScrollView. To this ScrollView, I added a Subview like this:
ChildViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"1"];
...
0
votes
0answers
9 views
How to render UIWebView (AdMob Banner) while UICollectionView is scrolling
I am working on integrating AdMob SDK into the app. I have banner ads as cells of the UICollectionView. I load them in the
- (UICollectionViewCell *)collectionView:(UICollectionView *)cv
...
0
votes
1answer
20 views
Creating UIScrollView In Interface Builder Using Dynamic Content
I am a newcomer to the realm of iOS development.
I am trying to get the UIScrollView control to work and ran across the following question:
steps for creating UIScrollView with Interface Builder
I ...
0
votes
1answer
17 views
UIScrollView zooms subviews when increasing subview dimensions
I have a UIScrollView that contains a view derived from UIView that uses CATiledLayer. Essentially, in my ViewController viewDidLoad:
_tiledView = [[TiledView alloc] initWithFrame:rect ...
2
votes
2answers
41 views
Why my [UIScrollView removeFromSuperview] is crashing?
The crash log is below.
Do you know any particular reason why might [UIScrollView removeFromSuperview] can crash? The scrollview contains view hierarchy with different types of UIViews. I also finds ...
0
votes
0answers
21 views
How to implement UIPageViewController with a UIScrollView?
I took Photo Scroller eample from Apple site and tried to implement my own Album copying the code. Now, the UIScrollView is not visible. How do I make it appear. As such the only code change that I ...
0
votes
0answers
45 views
Scrolling a scrollview hides all unhidden subviews
I have two subviews and two uibuttons nested within a scrollview.
When the buttons are tapped, each of the subviews are unhidden and appear underneath their respected uibutton.
What's weird is ...
0
votes
2answers
26 views
automatic UIScrollView with paging
I have a UIScrollView with paging enabled. However i want this scrollview to scroll right when a certain amount of time has passed. Is there a easy way to implement this or do i need to use a timer ...
0
votes
0answers
22 views
UIScrollView animated changing content after zooming
Hi i have project with ScrollView named TimeLine
- (void)viewDidLoad
{
[super viewDidLoad];
NSInteger days = 365;
NSInteger lastPos = 0;
// timeline.minimumZoomScale=0.1;
// ...
0
votes
5answers
53 views
UIScrollView Jerky Scrolling
I have a big scroll view. I just wish to scroll around the scroll view with fixed steps on every button press. However when I write the following code the scroll view scrolling is very jaggy. Can ...
0
votes
1answer
22 views
UIScrollView + UIPageControl auto slide with animation
I use NSTimer to do the auto slide and my code is like this:
NSTimer *timer;
timer = [NSTimer scheduledTimerWithTimeInterval: 5
...
0
votes
1answer
85 views
iOS: setContentSize is causing my entire UIScrollView frame to jump
There is probably a simple solution to this problem that I'm missing, but I can't seem to find the cause.
Problem: Every time I call setContentSize on my scroll view, it causes the entire scrollview ...
0
votes
1answer
21 views
UITableView/UIScrollView altering the speed of bounce after finger lifts up
When I scroll past the top cell (going up) in my UITableView, I release my finger and the UITableView returns back to it's original position with a nice bouncing animation. Is there any way to change ...
0
votes
0answers
19 views
Scrollview set content align left
I have in my iOS-App-Project a scrollview which contains two UIImages. In the portrait device mode, the UIImages arranged vertically. Thats right, but when I rotate the device in landscape mode, the ...
0
votes
1answer
22 views
UIScrollView Cutting off lables at the top of the screen
I am displaying multiple labels inside a UIScrollView, I can get them to display and I can get them to scroll, but a label at the top of the screen is cut off and is not visible unless you pull down. ...