0
votes
0answers
19 views

How to move the mouse in Objective-c when the display is zoomed in?

I know that by using the following i am able to move the mouse smoothly over the screen: CGEventRef ourEvent = CGEventCreate(NULL); CGPoint currentPosition = CGEventGetLocation(ourEvent); CGFloat x ...
1
vote
1answer
86 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
3answers
65 views

Can iOS 6+ MKMapView display whole world view

Pre-iOS 6.0 I was able to display the full globe on an MKMapView (using the old google maps). On iOS 6.0+ (using apple maps) I cannot zoom fully out (e.g. I cannot display USA and Russia in the same ...
0
votes
1answer
35 views

Map may not zoom so far out

Simple question: Is it possible to do a max zoom-level? e.g. region.span.latitudeDelta = 0.02; region.span.longitudeDelta = 0.02; I don't want to do it static. Think about the max possible ...
1
vote
0answers
55 views

How to load in image already zoomed out

I am trying to display a large Image in my iPhone app. It behaves kind of strangely and I can't get it to center seeing as its so large. Is there a way to load it scaled down so that the whole image ...
-2
votes
2answers
123 views

Pinch To Zoom in UIWebView in iphone App

I am Developing simple App. I am accessing html pages on UIWebVIew. and I wanted to zoom that html pages with the help of zoom option please help me out.
0
votes
1answer
98 views

UIScrollview calculation of new CGRect after ZoomToRect

My problem is i am not able to get the exact CGRect value after zooming for zooming in UIScrollview i am using zoomToRect method of UIScrollview. while zooming i am setting the contentOffset property. ...
0
votes
0answers
49 views

When I make zoom center is shifted to the left bottom

I'm developing an iOS application with latest SDK. I'm working with camera and I want to make zoom. To do it I have this code: - (void) viewWillAppear:(BOOL)animated { [super ...
0
votes
2answers
408 views

How can you create a zoomable timeline in iOS?

I would like to create a zoomable timeline in my iOS application for a kind of a todo-list. Zooming in would display days and hours and zooming out would trigger the folding out of days or zooming out ...
1
vote
3answers
217 views

Zoom a UIScrollview on Objective-C

In one of the projects I'm working on, I have a UIScrollView that has a lot of buttons and labels that resemble movie theater seats that the user can tap to select seats for them to buy. Is it ...
3
votes
0answers
189 views

Set minimum zoom level for UIImagePickerController cropping

I am using a UIImagePickerController to allow the user to upload a photo for use in my application. After selecting a photo to upload, the user is then prompted to crop his/her photo (since I have set ...
0
votes
1answer
43 views

How to set scrollView with minimal scale at start?

I have to set UIScrollView at start with 0.28 scale (current scale). How can i do it correclty? Now to scaling I'm using this methods: #pragma mark - UIScrollViewDelegate Methods -(UIView ...
0
votes
0answers
103 views

Zooming UIView inside a ScrollView via Pinch gesture on a Point

Due to some requirements I'm zomming subview of UIScrollView with UIPinchGestureRecognizer and not using UIScrollView's default zooming. In selector of gesture I resize my subview with a factor and ...
1
vote
0answers
37 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 ...
4
votes
2answers
458 views

Zooming an image drawn on a CGContext from the pinch location

This question is a follow-up from another SO question from a while back: zooming using pinch but not using transform methods. I got the zooming to work pretty near perfectly, however it will still ...
0
votes
1answer
171 views

Efficiently Scroll and Zoom Photos Using UIScrollView and UIImageView

I need a simple way of scrolling through photos and zooming each photo as needed. Just like original Apple's Photo app. I understand the concept: UIScrollView has many UIScrollView subviews as pages ...
1
vote
1answer
154 views

Keep subviews not transformed during UIScrollView zooming

I have UIScrollView with content view that has a lot of different subviews (including some labels) on it. During zooming of content view all these different subviews are zoomed as anticipated. However ...
2
votes
2answers
406 views

Max zoom scale in iOS 6.0 maps?

i have been throtting through the iOS 6.0 Map documentation, but I am unable to find any way to define a max zoom on the MKMapView. Have anyone found a way to do this ? I had a method that worked on ...
0
votes
0answers
14 views

Zooming in Changes the “layout” of my user interface objects (iOS)

When I zoom in programmatically to 125%, the UITextFields I have in my view become uncentered. Normally they are centered with the background image at 100%, but at 125% they are off to the left. How ...
0
votes
1answer
192 views

IOS - UIScrollView borders and zoom

I'm implementing a gallery with a UIScrollView, and I've a problem if the picture haven't the same size as the UIScrollView. In this case, when the image is at normal size, there are borders as ...
2
votes
3answers
242 views

Zoom with a drawing view

I'm looking for a solution in order to have a beautiful zoom on a drawing view. In my app, I have a view with an other UIView (which is used like a drawing view) and when I draw a stroke on it, the ...
0
votes
0answers
94 views

Scrolling through NSOpenGLView issue

I have zoom and scrolling ability in my app. Main app view is NSOpenGLView, witch is placed in NSScrollView. Zooming is working very good. (Through glTranslatef). And sliding is not working good: ...
0
votes
1answer
106 views

Button above image with zoom objective c

I need to show an image, and above it some buttons that correspond to certain clickable areas of the image, the problem is that the image has zoom, and when i zoom the image, the buttons do not stay ...
1
vote
1answer
61 views

Gallery with two UIScrollViews not working properly

I've an image gallery, that consists of UIScrollView that contains UIScrollView for each image. So I can do zoom on each picture, but when I'm zoomed in, its not changing to the next picture, until I ...
0
votes
5answers
432 views

How to know the current scale of a UIView?

All is in the title... I want to know the current scale (Zoom level) of a UIIView. Somebody can help me ?
0
votes
0answers
67 views

UIScrollView does not page anymore when zooming

I have got a scrollview displaying images via an imageview. The scrollview's width is less than the screen width and it does not clip the subviews, so the images to the left and right of the current ...
0
votes
1answer
51 views

UIScrollView, how to set size to image size?

I have UIScrollView, with an UIImageView on top. I have a couple things I am trying to fix: 1) Initially, the image is scaled to fit in the screen (this is good). How do I set a boundary so that ...
0
votes
1answer
56 views

Can't position the imageview to the center

- (void)centerScrollViewContents { CGSize boundsSize = self.scrollView.bounds.size; CGRect contentsFrame = self.imageView.frame; if (contentsFrame.size.width < boundsSize.width) { ...
0
votes
1answer
540 views

UIScrollView - Custom Map - Prevent marker subview on map from scaling with map

I have a custom map of a limited area, and have it set up to correctly show the users' location. The map is a 1600px square image within a UIScrollView. I have a crosshair image to show the current ...
0
votes
2answers
553 views

Zoom UIView without using UIScrollview

How can i zoom a UIView without using UIScrollBar? I can add pinch gesture recognizer but how can i move the zoomed image to selected area?
0
votes
1answer
173 views

How do I make my image zoomable in a scrollview?

I want my image called bildfraga to be zoomable. It is placed in the scrollview called scroll. I am able to scroll the picture, but not zoom it. This is my code when the image is shown: bildfraga ...
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 ...
0
votes
1answer
203 views

UIScrollView buggy

Please excuse poor code atm, just trying to get it working before making it look nice. So I am trying to get UIScrollView working. If I remove all scroll view stuff, I have a nicely laid out page ...
0
votes
2answers
436 views

Zoom Layer centered on a Sprite

I am in process of developing a small game where a space-ship travels through a layer (doh!), in some situations the spaceship comes close to an enemy, and the whole layer is zoomed in on the ...
0
votes
1answer
210 views

Double-tap to zoom in PDF UIScrollView?

I have an "PDF Viewer" in my application. I use the CGPDFDocumentRef and CGPDFPageRef to show the PDF. To zoom in the PDF I use a UIScrollView. I am already able to pinch-zoom in the UIScrollView ...
0
votes
1answer
245 views

Zoom multiple objects simultaneously in UIScrollView

I have a UIScrollview that contains multiple UIImageViews. I could zoom using the UIScrollView delegate but can only return one UIImageView at a time. I want to be able to zoom all objects inside the ...
0
votes
1answer
594 views

UIScrollView setZoomScale:animated messes scrollView aspect ratio

I am developing an app with a view that holds a UISCrollView, inside which is a UIImageView. When the view is about to appear, I perform a setZoomScale operation: -(void) ...
0
votes
3answers
2k views

MapKit iPhone display Zoom Controls

Is it possible using MapKit to show a map in iPhone, like i´m doing, to display zoom controls on the map? If not, what are the flags or methods i should use to increase and diminish the zoom, so i ...
1
vote
1answer
481 views

UIWebView is not zooming more than x2

There are a lot of questions with zooming in UIWebView, but I could not find an answer to mine. I've got ViewController with WebView. I load an SVG-file into this WebView, and I want to zoom in by ...
0
votes
2answers
796 views

How to scale my subviews in UIScrollView simultaneously?

Basically, my view hierarchy is as below: UIWindow (level 1) |--UIScrollView (level 2) |--single UIView (level 3) |-- Multiple subviews (level 4) When the user pinches ...
0
votes
2answers
310 views

Cause UIScrollView zoomToRect: to only display a portion

I have a UIScrollView subclass that contains a UIImageView. When the user double taps on the zone I want to zoom to that CGRect (calculated from CGPoint) and "hide" the rest of the UIImageView. The ...
0
votes
0answers
178 views

how to change plot space value for pie chart in core-plot [duplicate]

Possible Duplicate: Core Plot pie chart zooming have used following code to zoom the pie char using core plot . graph = [[CPTXYGraph alloc] initWithFrame: self.view.bounds]; ...
1
vote
0answers
315 views

Why zooming in is not working in my objective c code? [closed]

I want to zoom in & out MKMapView, but when I tried zooming in, it did not work. Here's the code: MKCoordinateRegion adjustedRegion = mapView.region; if(zoomStepperPreviousValue >[sender ...
0
votes
1answer
356 views

How to zoom in and zoom out on custom zoom button in iphone?

I am new to iphone, I am using overlay view to create zoom in and zoom out buttons, now, i want to zoom in and out on clicking buttons placed for zoom in and zoom out. how to do it? Is there any ...
2
votes
1answer
5k views

UIWebView set initial zoom scale programmatically when loading an external website?

What I want to do is set the initial zoom scale [and in some cases, content offset, but that is less important] for an external website. But after the app initially sets the zoom and offset, the user ...
1
vote
1answer
462 views

UIScrollview zoom refresh content

I am currently using a uiscrollview to zoom views in and out. If I have a textview, the font becomes blurred after it is zoomed in. Can I force the content to refresh? i.e setneedsdislay ?
0
votes
2answers
2k views

UIWebview default zoom level

In my app, I use UIWebviews to display some one page PDFs, I've noticed that in iOS5 the default zoom level is to show the entire document where as in 4.3 the document was opened zoomed in. Is it ...
3
votes
2answers
1k views

Saving 2 UIImages to one while saving rotation, resize info and its quality

I want to save 2 UIImages that are moved, resized and rotated by user. The problem is i dont want to use such function as any 'printscreen one', because it makes both images to lose a lot from their ...
-1
votes
0answers
98 views

Hierarchy of subviews [duplicate]

Possible Duplicate: How to trigger a video when a user reaches a certain location? Hey Guys i am trying to trigger an audio file when a user enters a specific location and to make the map ...
0
votes
1answer
144 views

Use Scrollview like MapView ,with scroll and zoom option

I have some map images and i want that i can scroll that images and i can zoom that images. Like , MKMapView we can zoom images and the placeMark will remains as it is (it would not zoom). same thing ...

1 2