Tagged Questions
1
vote
1answer
9 views
How to setup a subclass of UIScrollView to respond to touch events?
I recently had a problem regarding not being able to register touches events (touchesMoved, etc) from within a UIScrollView. After talking with lots of people and reading tons of posts, it turns out ...
-1
votes
0answers
15 views
ios scrolling to reveal field hidden by keyboard
This has been mentioned before, and the (good) advice was to see Apple's documentation at
...
0
votes
2answers
8 views
Detecting toucesbegan in uiscrollview
I have added a vertical swipe to a horizontal scrollview. That bit works fine, but I would like to light up targets above and below the scrollview when the suer touches it, to indicate that swiping up ...
1
vote
0answers
9 views
iOS Scroll View, Container View - auto layout issue
I'm using storyboards & auto layout. I have a Container View in a UIScrollView. The Container View allows me to layout a long (320, 1000) view in the storyboard. I set the content size of the ...
0
votes
2answers
18 views
Touch on UITextField inside UIScrollView prevents scrolling
I've got a bunch of UITextFields inside of a UIScrollView, and when the user tries to scroll up or down, if the initial touch occurs inside of a UITextField, that text field becomes first responder ...
0
votes
0answers
17 views
Overlay images on the photo
Please tell me any good solutions to this problem here: the image overlay on the photo (well, for example on the photo mask Batman impose and save to the library, well, everything like that), with ...
1
vote
1answer
22 views
iOS: Stretching / Resizing UITableView Header As The User Drags Down?
Using storyboard, I have placed an imageView as my tableView's headerView inside a ViewController.
This is how my storyboard is set up:
Depending on what data the user is viewing, the ...
0
votes
1answer
10 views
How to animate zoomScale on a UIScrollView
I need to set zoomScale back to 1 on a UIScrollView, but I need it to be animated. I thought I could use CABasicAnimation for this, but NSValue doesn't seem to have a "valueForFloat" or ...
0
votes
0answers
10 views
Why does changing a UITextView's frame origin completely disfigure my entire frame size?
I have a UITextview with a small UIViewController on top of it, whose view is a UITextView (It's red in the screenshots).The small red textView is the subView of the bigger textView under it.
Heres ...
0
votes
0answers
23 views
Scroll View contentSize Incrementing
How can i create a ScrollView, like the image below :
wich everytime the user scrolls to the right limit of the window, i increase the content size and show a new "RightView", and scroll the ...
0
votes
0answers
14 views
Getting size information from controllers
I have a scroll view wich i have declared as an iboutlet, but i want to retrieve the information of height. Im doing like this: scrollview.frame.size.height but it returns 0. BTW im in ViewDidLoad ...
0
votes
1answer
18 views
iOS: Stretching ImageView Above My TableView?
I have added a UIImageView on top of my tableView in storyboard & it works perfectly fine, except that when you scroll down, the imageView doesn't stick to the navigationBar and instead only ...
0
votes
1answer
16 views
How can I cancel other events when my UIPanGestureRecognizer occurs along side a UIScrollView?
I have a UIPanGestureRecognizer that I added to a UIScrollView, and when certain circumstances with the UIPanGestureRecognizer are met I want to cancel the touch/pan events from going to the ...
0
votes
3answers
30 views
UIScrollView subviews contents size issue
I am using a scrollView, in which i have added some static content in a container view and below this container view i have added a web view and added both these views into my scrollView, I dont want ...
0
votes
1answer
19 views
UITextView that expands dynamically to text inside a scroll view using auto layout
I have a UIScrollView that includes some components, and one of these components is a UITextView, what I want is to let the UITextView dynamically expands with the UIScrollView, in fact I use ...