Tagged Questions
0
votes
1answer
23 views
UIViewContentModeScaleAspectFill of UIimageview working proper in iphone 4, but not in iphone4s
I have written one code for scaling UIImageview. My problem is imageview is scaling correctly in iphone 4 , but not in iphone4s.
My code is below:
UIImageView *imgBG1 = [[UIImageView alloc]init];
...
1
vote
1answer
62 views
Make UIView scroll with UITableView but pin to top out of view
I currently have a view controller that is comprised of a Navigation bar, followed by a UIView that has two UIButtons added as subViews. There is then a UITableView underneath that begins at the ...
0
votes
2answers
46 views
Adding a UIButton to a UIScrollView stops it from scrolling
I'm very new to programming and objective C so you'll have to go easy on me. I'm sure some of the code in the app is probably unnecessary. I've searched google and StackOverflow for an answer but none ...
0
votes
0answers
15 views
APExtendedScrollView with Storyboard?
I'm trying to use the APExtendedScrollView (https://github.com/niktszczegolny/APExtendedScrollView) on my App. But when i try to edit the code i saw the code is without a storyboard and i'm a n00b ...
0
votes
1answer
45 views
UIScrollView with multiple AVPlayerViews
i need your help. I want to create a horizontal ScrollView with some AVPlayers. I tried this ScrollView with some pictures and it works. The problem now is that i can scroll due the View, but all the ...
-2
votes
1answer
46 views
How to stop scrollview at a certain point? [closed]
I have big images in a vertical scrollview. I want the scrollview to stop at each image, how can I do this?
0
votes
1answer
106 views
Rotation animation in horizontal scrollview on images Obj-c
I have a question, I want to have just a little rotation animation on my images in a horizontal scrollview. They should rotate when they slide in, and when they slide out. Does anyone have any idea ...
0
votes
1answer
61 views
dismiss presentModalViewController not working over UIScrollView
In my app I am using presentModalViewController and in the next controller I have used UIScrollView, also to dismiss presentModalViewController UITapGestureRecognizer is used
My code is like,
...
2
votes
1answer
85 views
iOS: Touch Event in UIScroll view
I have tried so many thing to get touch inside a UIScrollView but I'm not getting how to do it.
Actually I want to touch inside a UIScrollView and get the location of subview (which i have touched).
1
vote
1answer
25 views
ScrollView is not working when try to add as a subview
I have problems with my scrollView! I have a view called Rootview and I wanna add three subviews to a scrollview. When I add the scrollview as a subview the middle view and the three subviews ...
3
votes
2answers
92 views
When I try to scroll down on my UIScrollview, it bounces back to the same place it was
Okay, so i'm using a UIScrollView in my app. I have placed the scrollview in a viewcontroller in story board. I have several buttons there and a few labels. But when I try to scroll down to the ...
0
votes
1answer
96 views
Add scrollview objects with text to UIViewController stortboard application
I'm new to iPhone app development and just developing an application.
I have story board application with tabs.One tab is associated with view controller.
Now, I want to add a scroll view object to ...
1
vote
0answers
36 views
How to zoom to show inner frames
I am trying to implement a horizontal day view which will show 0, 1, ---- to 23 hours on a scroll view as timelines. By default, it shows hours only, but when user changes the zoom level (60, 30, 15 ...
0
votes
1answer
112 views
Horizontally and vertically scrolling table view
I am trying to create a table view that scrolls horizontally and vertically like TeacherKit app.
If I scroll vertically, first row is fixed and if I scroll horizontally, first column is fixed.
Do ...
0
votes
1answer
90 views
How to implement a scroller in UITableView with only ONE section?
I have lots of data in a UITableView but I don't want any of it in sections. However, I would like to implement a scroller in my table view that works in the same manner as
- (NSArray ...
0
votes
2answers
123 views
UIScrollView in iPhone?
I am working in iPhone application, Using UIScrollView to set in Horizontal, add 5 images in UIScrollView,and its working fine.
(I want to show 2nd image in opening time) Then i tried, when the ...
2
votes
7answers
1k views
How do I scroll the UIScrollView when the keyboard appears?
I'm having trouble with my code. I'm trying to move the UIscrollview when I'm editing an UItextfield that should be hidden by the keyboard pop.
I'm moving the main frame right now because I don't ...
-1
votes
2answers
362 views
How to make current view a scrollview? iOS / Objective C
I have a view (that is actually part of a UINavigationControllers view) that i want to make a scrollview.
how do i do that?
could i do something like this:
UIScrollView * content = [[UIScrollView ...
1
vote
1answer
168 views
How to make simple horizontal photo gallery with iOS5
I would like to make a VERY simple photo gallery that displays 1 image at a time, that you swipe left or right to see the image. This gallery will have 4-6 images max. It doesn't need any fancy ...
1
vote
2answers
345 views
How to add AutoScroll to Scrollview in iOS?
I am having Scollview in iOS. In that scrollview I have two Table Views.
If the contents of Table view get increased dynamically (by row), then I want to add the AutoScroll to the Scrollview.
...
0
votes
2answers
409 views
How to create a paging scrollView with space between views
I followed the tutorial about how to create a scrollView Page Control: http://www.iosdevnotes.com/2011/03/uiscrollview-paging/
This tutorial is really good and I implement well the code. Here my ...
2
votes
2answers
127 views
iphone development: how to check if an object located on the phone's screen
In my app I have a scrollview which has some objects like an imageview, a button etc. and my scrollview has a huge content so I need to scroll vertically or horizontally to explore it. My question is ...
1
vote
2answers
355 views
iphone development : gesture recognition scrolling enabled simultaneously
In my app I need have a swipe gesture recogniser on my background scroller for the up direction. Here is my code below
It is in viewDidLoad
UISwipeGestureRecognizer *Swipe = ...
0
votes
0answers
69 views
iphone development recognizing vertical gesture on a scrollview
In my app there is a horizontal scrollview and I want to capture vertical movement on this scrollview. The problem is since it is a horizontal scrollview the pages are moving horizontally so ...
1
vote
1answer
143 views
Circular uiscrollview with list of items (buttons)
I am trying to get the circular scroll with list of buttons, buttons width should be dynamic (not fixed). I tired with iCarousel, but the problem is it is accepting itemWidth as a static, which will ...
0
votes
3answers
83 views
How to make scollView (for T&C) only show up once at begin of app, then never show up again?
My questions is...how to make....this...
I am trying to make a scollview to show the term&condition at beginning of my app when the user is 1st time using the app.
if the user accepted the ...
0
votes
4answers
431 views
Hide and show scrollview with animation
In my app I have a scrollview and when I press a button it is hidden when I press again it shows up.
I use scrollview.hidden = YES (or NO) to do it.
But I want to do it with an animation. For ...
0
votes
1answer
88 views
Using touchesEnded in a UIScrollView [closed]
In my application, I want to run some code when I touch the screen it is easy actually but I want to run the code when I touch to an area which is located inside a scrollView. Is that possible? ...
1
vote
2answers
280 views
Scroll a UIScrollView programatically
In my iPhone application, I have a UIScrollview with five pages. Is that possible to tap a button and scroll the pages? for example, I am in the first page and if I press the "Button 5" the fifth page ...
-1
votes
1answer
116 views
How to make a view controller scrollable?
I have a view controller on which i parse data from a server and show on screen an article. Now the article can have any size from 10 characters to 10000. So what i need is to make the whole view ...
0
votes
1answer
148 views
Transition between portrait and landscape mode
For a new iPad app I have 2 different designs, one for landscape mode, and one for portrait mode.
The one in portrait mode basically consists of a scrollview with a grid of thumbs.
-----------------
...
1
vote
1answer
770 views
zoom image on scrollview iphone?
I have to zoom an image in UIScrollView and after zooming i wants crop the image which is visible in UIImageView. I have the following problems:
1) Image not zooming, viewForZoomingInScrollView ...
-1
votes
1answer
321 views
Do gesture recognizers override the scrollview's ability to scroll?
In my app, a top view has pan gesture recognizers to move the view to the left and to the right to reveal two other views underneath it. I'm trying to put a scrollview into the top view, but i can't ...
0
votes
2answers
228 views
Iphone: ScrollView force to bottom
I would like a ScrollView to start all the way at the bottom. Any methods?
I have already tried this, but I can't back to top....
CGPoint bottomOffset = CGPointMake(0, [yourScrollView ...
1
vote
1answer
83 views
Make detail side of splitViewController scrollable?
I am trying to imbed a scrollView in the detail side of a splitViewController. Should the scrollView be added inside the 'View', as displayed in the image below?
Or does the 'View' need to be ...
0
votes
3answers
327 views
UINavigationBar and UIScrollView resizing
I've UIViewController with navigation bar and scrollview within it.
When scrollview scrolls down I hide navigation bar and set bounds for scrollview to fit free space.
...
3
votes
2answers
894 views
Infinite Scrolling - setContentOffset: stops deceleration of UIScrollView
I am creating an iPhone app with a large, 360 degree, panorama image. The panorama is a CATiledLayer in a UIScrollView.
I am attempting to implement infinite scrolling on the image (horizontal ...
0
votes
2answers
84 views
Adding a scrollview and get it to zoom
In my iphone app, you get a UIView with a background image and a "start button".
When you hit the start button, the start button will be hidden, and your background aswell. You will see another ...
1
vote
2answers
666 views
How to find out if scrollView is about to be scrolled up or down
I would like to find out if a scrollView is scrolled up or down. Ideally, I'd like to have only one call if the scrollView is scrolled up or down. I tried this but it will obviously not tell me ...
0
votes
1answer
61 views
UIScrollView with “Links”
Guys!
So, I have an UIScrollView. In this Scroll View, I want to have a text like this:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut ...
-1
votes
1answer
434 views
How to page jump from selected UITableView to scrollView?
I'm making Catalog like iOS application. using Xcode 4.2 with story board.
This application have two views, and each changeable by tab bar controller.
Application image is here. ...
0
votes
1answer
181 views
Segmented control UIpopover
Anyone know any links/tutorials on how to put a segmented control in a UIpopover? one of the views has a scroll view and when the segment index is selected the scroll view appears on top of the rest ...
0
votes
2answers
395 views
Calculate the height for a UIScrollView
In my project I have a simple UIView with a UIScrollView subview. I am trying to calculate the height based on the content within the UIScrollView with the following code:
file.h
@interface ...
1
vote
2answers
178 views
KVO binding causes program to freeze?
I have sort of an odd question concerning a process which appears to get stuck in a wait status at what appears to be random intervals and am hoping I can get some help concerning this.
When the user ...
1
vote
1answer
371 views
UITableView IN ScrollView
Well I have a view of this type of hierarchy
Main View (having some Functions as well)
|
ScrollView (added now)
...
0
votes
1answer
109 views
Animating an UIButton on an UIScrollView
I'm having problems animating my button in my scrollview. Basically what I'm doing is moving the button down the y-axis when the button is pressed down and moving it back to it's original position ...
0
votes
3answers
452 views
horizontal scrollview not working
In my application I have to implement the functionality of the horizontal scrollview. I have written code as follows:
coding of .h file
UIScrollView *HorizontalScroll;
@property (nonatomic,retain) ...
3
votes
1answer
2k views
ios : How to load images from URL to page control using scroll view
I'm new in iOS. Now I want to load view images from URL to page control using scroll view. When I run the program the first image is shown but when I try to slide to next image or I move to another ...
1
vote
2answers
472 views
Scroll View with transparent background (Objective-c Mac OS X)
I have a Scroll View in my Mac app with a white background but I want the background to be completely transparent. I changed the opacity of the background to 0 but that doesn't seem to help, so I ...
0
votes
1answer
147 views
UIScrollView is Zooming but every thing on scrollview is also zooming?
I am using a scrollview and I am zooming my scrollview.
I want that if i zoom my scrollview only background imageview which in the Scrollview can zoom and a small image on scrollview should not zoom.
...


