0
votes
1answer
17 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
26 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
1answer
30 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
40 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
0answers
54 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
39 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
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
27 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
1answer
24 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 ...
2
votes
1answer
15 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
48 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
33 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
2answers
32 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
23 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
53 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
71 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
43 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
22 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
1answer
27 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
39 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
21 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 = ...
0
votes
1answer
37 views

scroll table view inside UIScrollView in storyboard ios

I always face problems with the UIScrollView which is: I have a UIViewController that contains two tableViewControllers, the contents of these tables are bigger than the height of the iphone, so I ...
1
vote
0answers
28 views

ios UIScrollview pass scroll event to superview

I have a UIView, and the UIView can detect a pan gesture to move this UIView to left. then I add a scrollview to this UIView, and this scrollview also can move to left and right(scroll's method), in ...
0
votes
1answer
23 views

how to “do something” while the scrollview content is past certain point

How can I make a button disappear (basically just go transparent) while the uiimage in my uiscrollview is scrolled past a certain point (for example 100 on the y axis) and for it to appear again when ...
0
votes
1answer
45 views

Understanding UIScrollView size behavior when using UIPopoverController

I am going through a book on iOS development, and i'm building a test application for the iPad. I am trying to create a popover when run on the iPad that displays a UIScrollView showing a UIImage that ...
0
votes
2answers
57 views

combine uitextview, uilabel and uiimageview in a scrollable object ios

I need a view that contains (title, image, and details), the details is about a textview. what I need is, to allow scroll to all the view, not just for the texview. in my application, if I disabled ...
0
votes
2answers
19 views

How to detect “Drag Enter” on UIScrollView

Imagine a UIButton and a user who taps somewhere OUTSIDE the button and then slides onto it. If I want the button to detect such touches I can register it for any "Touch Drag Enter" events. My ...
0
votes
1answer
14 views

zooming messes up current page of uipagecontrol

I have a page control with 2 pages. I allow zooming on both pages also. when I am zoomed in on the 2nd page, and I scroll around, the currentPage of the page control goes back to page 1 even though i ...
0
votes
0answers
20 views

Zooming on UICollectionView - locationInView returning strange values

I am trying to implement a zooming effect on a UICollectionView. In order to get the desired effect, I want to do two things: Scale the layout effectively Ensure that the the scaling 'stretches out' ...
0
votes
1answer
30 views

IOS UIScrollView Unwanted Bouncing

Hey so I am using the standard design template to implement swipe navigation on a page. I have a main view controller that holds the center view and two side views. The center view is contained in a ...
4
votes
3answers
36 views

check if scrollview.contentset went over certain x value

I have a scrollview and above some image. When the scrollview scrollView.contentOffset.x is past a certain X my image above should animate. I know how to animate. At the moment I'm doing this in the ...
0
votes
1answer
68 views

Unable to scroll to the bottom of UITableView

I know there are many answers of the question in the forum but they didn't help me. Here is my problem. I have UITableView with UISegmentedControl. In the one segment there is less data than in the ...
0
votes
0answers
19 views

UIScrollView on second screen to follow pinch and zoom of main UIScrollView

I am trying to get a scrollview on the second (AirPlay) screen to follow the scrolls and zooms of the main UIScrollView. I got it working (kinda..) by using notifications on the UIScrollView delegate ...
2
votes
2answers
39 views

UITextView inside a UIScrollView inside a Popover is not fully visible when keyboard is displayed

I have a UIPopover with a UIScrollViewinside it that contains a UITextView at the bottom. When the keyboard shows, the popover is resized as the text view begins to be edited. I want the code below ...
0
votes
2answers
29 views

Scroller is not showing in landscape mode in IOS APP

I want to make landscape and portrait mode iOS app. I've designed one page with 3 text boxes and 7 buttons. Text boxes and button are resizing (change width) according to IOS screen size in landscape ...
0
votes
0answers
31 views

UIScrollView Height getting

I have cardsDetialViewController with one scrollView in it. The height of scrollview is set to 354 and width is set to 309, in storyboard As shown in following figures. ...
0
votes
1answer
17 views

UIScrollView / Adding xibs to it

I am trying to create a scroll view and add 2 xib screens (SVPage1.xib and SVPage2.xib) to it so that I can flip through both screens. I created scrollview and Page Control object. This is what I ...
0
votes
1answer
73 views

Getting UIScrollView to work correctly on iPad

2ND UPDATE Courtesy of this thread In iOS6, XCode 4.5, UIScrollView is not Scrolling, despite contentSize being set the answer has been provided! Turning off Auto Layout on your Storyboard (the ...
0
votes
1answer
30 views

UIImageView is cut off on right side within PageControl after zooming

my image is cut off on the right side after zooming in. if i don't set the offset with cgrect make, then it is not cut off, but i want my image to be centered on the screen. how can i have my image ...
0
votes
1answer
37 views

Strange Behavior in Scrolling UIScrollView to UITextView hidden by keyboard

I have looked at a number of posts here on scrolling and unhiding a UITextField and believed that the same code should work for a UITextView, but that seems not to be the case. The first issue I ...
1
vote
1answer
18 views

Displaying and managing a list of dynamic and static views [closed]

I want to display a long vertically scrolling view made up of images, maps, some static content, some dynamic content, some lists, etc, (see image below). My gut feeling is to use a UITableView with ...
1
vote
1answer
50 views

UIImageView finding how much is out of bounds

I'm scaling an image within my UIImageView using : UIViewContentModeScaleAspectFill The image scales nicely but my issue is the ImageView sits within a UIScrollView, I've set the origin to 0,0. This ...
0
votes
2answers
33 views

About tap gesture in uiscrollview

I have an imageview in my scrollview,and i add a tap gesture for my uiscrollview. only the imageview area can respond tap gesture. why when i set the backgroudcolor property of scrollview,then the ...
0
votes
0answers
28 views

iOS: detecting horizontal scroll in UIScrollView

I am using EWMultiColumnTableView to create the grid. The problem is that I can detect only vertical scrolling, but I need information about horizontal scroll. EWMultiColumnTableView.m scrlView ...
0
votes
1answer
93 views

UIScrollView with iOS Auto Layout Constraints: Wrong size for subviews

I'm trying to generate a view in code. Here's the hierachy of my view object UIScrollView UIView UIButton The ScrollView should be the same size as the window. The button should be as big as ...
0
votes
2answers
37 views

ios : tableview not appearing in subview of a scrollview

I have a scrollview with multiple views.Enabled horizontal scrolling.Each view contains a tableview.I have page control in scrollview. when i drag horizontally, the views are appearing without ...
0
votes
1answer
37 views

Capture UIScrollView to an image with the right zoomScale

I'm using this code to take a Snapshot of the UIScrollView . My problem is that the snap shot will always take the 1.0f zoomscale of the UIScrollView While I want to snapshot the all content in the ...
1
vote
1answer
35 views

How to control two UIScrollViews in the same time with one touch?

Anyone has an idea how to control two scroll views while one in on the top of the other. One scrolls, the other one scrolls too. Same with zoom, gesture recognisers, etc ... Kinda like passing replica ...
0
votes
2answers
77 views

Horizontal and vertical scrolling in a UITableview

I want to make a lineup for a festival. You can see what I want to achieve below here. You can scroll in every direction ,horizontal - vertical and from left to right corner (don't know the proper ...

1 2 3 4 5 47