UIScrollView is a core iOS development component used to build generic scrolling and zooming user interfaces.
0
votes
0answers
15 views
EXC_BAD_ACCESS code=1 crash on UIScrollView pinch gesture
My app has a UIScrollView with some items on it (such as UITextField), and for the most part, when the view loads with this scroll view, I am able to pinch to zoom in and out and it works fine.
...
0
votes
2answers
40 views
ScrollView or CollectionView?
I have a collection view populated with data like:
[self.graniteImages addObject:[[NSMutableDictionary alloc]
initWithObjectsAndKeys:@"Angel Cream", @"name",
...
1
vote
1answer
60 views
UIScrollView not zooming
So, I have this UIScrollView that was doing just fine with zooming at first. I have the minimum and maximum zoom scales set and the necessary delegate method set up ...
0
votes
2answers
34 views
Control scrollview programmatically — Objective-c
I have an scrollview with some buttons on it. When one button is clicked I want it to be on top of the screen so that the button.frame.origin.y is the self.view.frame.origin.y. How do I do this?
0
votes
1answer
17 views
Prevent UIWebView from scrolling when datepicker comes into view
I have a form and an input field of type date <input type='date'> . When the field is tapped the datepicker comes into view but the web view scrolls up automatically as the picker becomes ...
0
votes
0answers
34 views
UIScrollView Stop working after push view and come back to the main view ios
I have a view controller in my application that includes a UIScrollView, and I have table and other components inside the scroll view, when I push to the detail view controller using ...
0
votes
3answers
72 views
how to make an ImageView zoomable with or without ScrollView.?
I have an UImageView in my IB and added a map image on that UImageView. I want to make that image pinch zoomable.
Here is my code:
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = ...
0
votes
2answers
33 views
scroll table view on selecting a textfield
i have a tableview with a text field on each cell the problem is tableview should scroll up on selecting the text field.here i'm attaching my project can u please let me know what mistake i had made.
...
1
vote
2answers
34 views
ScrollView Prevents labels from working
I have a DetailViewController that was working fine. It has labels and a textView. I added a scrollView to allow the textView to move up when it was selected, but after I put the scrollView under the ...
0
votes
0answers
4 views
TPKeyboardAvoiding issue
I'm using the TPKeyboardAvoiding project and in doing so have an issue with the size of the scroll view.
The scrolling works great but for some reason it's not using the full screen, despite being ...
0
votes
0answers
9 views
Strange Expansion of UIScollView with paging enabled
When I expand the tablview on top of a paging scroll view on top of a view, it expands fine. However, when I expand it when on the next page of the scrollview, the animation is a little strange.
A ...
0
votes
1answer
21 views
How do I keep MDScrollView from truncating my row headers and making my cells look bad?
Here's a screenshot to show what I am describing:
And the relevant code:
- (NSInteger)spreadView:(MDSpreadView *)aSpreadView numberOfColumnsInSection:(NSInteger)section{
return ...
0
votes
1answer
29 views
Scrollview truncates view upon re-entering the page
I have a detailviewcontroller, Dance, with a scrollview. I have set the size of the detailViewController and implemented the scrollview with,
- (void)viewDidAppear:(BOOL)animated
{
self.title = ...
0
votes
6answers
62 views
UIButton does not work when it in UIScrollView
My structure of views:
UITableView
UITableViewCell
UIScrollView
CustomView
UIButton
The problem is UIButton doesn't work when I touch it.
I create it with code:
btn = ...
0
votes
1answer
25 views
Select current button that is showing in UIScrollView programmatically
I have a UIScrollView with paging enabled. In every page I have a button. I want that with every swipe the button that is showing in the UIScrollView will be selected.
I'm guessing that the solution ...
0
votes
3answers
72 views
scroll table view top when selecting an textfield
I Have a UITableView with custom cell with UITextField and buttons on that ,my issue is when ever the user selects some textfields in bottom keybord is hiding that textfield , i tried to scroll up the ...
0
votes
1answer
48 views
how to unhide the ScrollView after converting it PDF in iphone application
I am creating pdf from UIScrollView.
It works fine and creates a PDF but the problem is that after creation of pdf the scrollView is vanished from the screen and when i again load the app then it ...
2
votes
1answer
40 views
Next image in scrollview overlaps the new view when pushing?
I have a scrollview that displays a bunch of images. When choosing the current image in the scrollview, it will push to a new view (using a navigation controller).
My problem is when I push, I see ...
-1
votes
0answers
51 views
iphone i want this uiscrollview animation
I want to make this animation,
//i do this in the delegate of scrollview, i just do one test in one direction
- (void)scrollViewWillBeginDecelerating:(UIScrollView *)scrollView {
float speed = ...
0
votes
0answers
30 views
iPhone SDK: Buttons and Labels causing UIScrollView to not scroll
I have been dealing with this all day and I simply cant find what the heck is going wrong. I have a scrollview inside a viewcontroller, but when i add a label or button to the view the scroll view ...
0
votes
1answer
43 views
populating images in UIScrollView. And how to do it lazily [closed]
Well this is my usual domain now, I have managed some functionality, but I need to make it better.
I am trying to populate recent images from camera roll. I'm pretty sure there is more elegant way to ...
0
votes
1answer
37 views
UIScrollView changes bounds
I'm using a Navigation Controller for navigation.
My root view controller's UIView contains a UIScrollView which I added in the IB. I find that depending on my scrollView's current visible part, when ...
0
votes
0answers
25 views
Scrolling is not working in viewcontroller?
iam working on iOS 6.1 but i have to develop app for iOs 5.0 i have following controlls in my view controller iOS 5.0 when i change the orientation iam not able to see the lower part even iam ...
0
votes
1answer
22 views
Multiple UIViews in XIB of UITableViewCell
I've been trying to make a custom UITableViewCell with a UIScrollView.
I have a .xib which contains a UITableViewCell (that contains only a UIScrollView) and a UIView that is the content view for the ...
0
votes
0answers
37 views
subviews are overlapping inside the scrollview
My original question is posted here, but I wanted to open new question to explain in better in briefly way about my issue.
I try to draw 3 subviews on a scrollview and make that scroll horizontally. ...
0
votes
0answers
18 views
UIGesture recognizer override scroll view scroll gesture
How do I cancel a scrollView's scroll when a subView's gestureRecognizer is activated?
I have a view that is a subView of a scroll view. The subView has a pan gesture recognizer. I would like to move ...
0
votes
1answer
59 views
Touch Interaction in a UIScrollView
There are a few posts similar to this, but I'm having trouble adapting the other responses to my code. I am having issues with using the methods touchesBegan, touchesMoved, and touchesEnded in my ...
0
votes
2answers
45 views
Creating PDF from UIScrollView in iphone app
I am creating pdf from UIView to pdf it works fine but i have scrollView with content which i want to convert to pdf but it only show visible part in pdf not the whole scrollView content. here is my ...
0
votes
2answers
39 views
How to perform action “if content offset is greater than…”
I've looked absolutely everywhere for hours and can't find a solution that works for me. All I'm trying to do is make my app do something when the position of the content in the uiscrollview is above ...
0
votes
0answers
60 views
UIScrollView acting differently on iOS 5 and 6
I have a simple uitableview controller to start my application. I set it up so that there is a segue between this and the next controller. This next controller is a uiviewcontroller containing a ...
0
votes
1answer
40 views
How to force scrollRectToVisible: animated:
I want to make the scrollRectToVisible:animated: work even when the contentSize is only set to 1 page size.
The reason: I have multiple pages in the UIScrollView but want to maintain the hard-drag ...
0
votes
0answers
32 views
How do i run my video on scrollview by using paging mode?
I want to run my video that is longer than the iphone screen,so I need to use paging mode of scrollview to separate it to 3 part.
I did something like this:
scrollView = [[UIScrollView alloc] ...
0
votes
2answers
39 views
scrolling other UITableview at the same time as another UItableview
I have a quite complicated view. What I basicly have is the following
You can see I have a vertical tableview. In each cell I have a horizontal tableview. What I want to do now is when I scroll one ...
-1
votes
1answer
36 views
How to implement an horizontal slider for iOS (similar to Twitter app)?
I'm working on a iOS project and I would like to implement an horizontal slider similar to the Twitter app for iOS. You know, you can slide the user's picture to display more information (bio, url, ...
0
votes
0answers
6 views
Scroll view response to pinches
I have a UIScrollView that contains a UIView as its only subview. I'll call it ContainerView. I return ContainerView in the scroll view's delegate method viewForZoomingInScrollView.
ContainerView ...
0
votes
1answer
35 views
UIScrollView scroll event blocks UIView animation
I have an animating set of UIImageView's that represent a current value and continually keeps ticking upwards...ideally never stopping, also in the view is a scrollView or to and whenever I'm ...
0
votes
1answer
16 views
iOS scroll view childs are not getting touched
I'm new to iOS so I'm getting problem with scroll view.
My scroll view having image views as subviews. Whenever I'm trying to touch image inside scroll view, scroll view touch is getting enable ...
0
votes
5answers
63 views
UIScrollView with multiple images
How to show current image in the scroll view along with some part of the next image if next image is available in the scroll view and also some part of the previous image if a previous image is ...
0
votes
1answer
36 views
Some help regarding UIScrollView and changing ownership of a UIView
Basically, I'm working on an app on the iPad that involves a line which the user can scroll horizontally through on the screen. It's set up so that there is a UIScrollView and a UIView on top that ...
0
votes
3answers
38 views
iOS Delay even when using dispatch
I have a wallpaper app that has a paged scrollview on the main view. each page of the scrollview displays 9 images.
When the view is scrolled I'm loading the next 10 pages of images and set the ...
0
votes
2answers
30 views
UIScrollView at 3x zoom with UIView overlay
I have a UIScrollView containing a large image of size 3354 x 2082. I have the UIScrollView zoomed out to display the entire image. I am adding red circles like this:
CGRect positionFrame = ...
0
votes
2answers
66 views
IOS ScrollView Issues
Hey I'm following this tutorial: http://www.raywenderlich.com/10518/how-to-use-uiscrollview-to-scroll-and-zoom-content and currently on the first step but am experiencing some weird behavior. The ...
0
votes
3answers
74 views
UITableview not placed correctly in uiscrollview
I have a UIscrollView that uses a pagecontrol. I'm adding tables to the scrollview in code. The tableviews should have a padding of 20px on each side. So I do the following.
CGRect frame = ...
0
votes
2answers
58 views
UIScrollView Stop working after push view to UINavigationController
The scrollview in my main page stop working if I push something to the navigation controller and then pop back to the main page. It works normally if I reopen the application without pushing anything ...
0
votes
0answers
28 views
UIScrollView not responding to touch
My UIScrollView is not responding to touch events, nor is my touchesBegain method being called for my UIViewController. (Also the text on my buttons are distorted on one and not shown on the other)
...
0
votes
0answers
21 views
Detect UILongPressGestureRecognizer fail event
I have several UIView contained inside 2 UIScrollView (vertical, horizontal) and I would like to implement a long press gesture in the former.
CocoaTouch UILongPressGestureRecognizer correctly ...
0
votes
1answer
36 views
UIScrollView Subview Scaling
I'm attempting to scale a UIScrollView's subviews, based off of how far away they are from the center of the container. I think I'm close, but it isn't quite right. The views to the left of the center ...
-3
votes
0answers
27 views
Add textfields by pressing button [closed]
is it possible to add textfields inside a viewcontroller by pressing a button .exemple txtfieldOne,textfieldTwo, textfieldThree , by pressing button I get , textfieldOne, ...
1
vote
1answer
41 views
How to make irregular shaped UIScrollView?
I want to make irregular shaped UIScrollView(using CGPath or UIBezierPath).
The contents will be scrollable and zoomable. And scroll actions will be accepted only in these areas, not rectangular ...
0
votes
1answer
26 views
Scrolling not working after UIImagePickerController
In my app scrolview is made active using the following code.
scroll.contentSize = CGSizeMake(320, 760);
[scroll setScrollEnabled:YES];
[scroll setCanCancelContentTouches:NO];
scroll.indicatorStyle = ...





