|
I'm trying to add a placemark to a map. The placemark is built from an address completely outside of Address Book.
My placemark is appearing on the map, but when I try to pinch to zoom in I get a crash:
*** -[CALayer objectForKey:]: unrecognized selector...
Started by tewha on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is something happening to that theAddress NSDictionary between when you create it and when you pass.
|
|
Yesterday I started having an issue with pictures of items not zooming or enlarging when shopping. Also cannot add items to my watch list. Can bid or buy just fine though. Have not had these issues before. Using Safari browser, but same thing happens ...
Started by nadinesmachine on
, 24 posts
by 15 people.
Answer Snippets (Read the full thread at ebay):
Tried....
Whatever the problem with the photo zoom function.
Lots of instances of seeing "javascript;" when mousing over buttons and links.
All photo view/zoom functions, save to watchlist, reading and replying to messages, and other.
|
|
I have a Graph being drawn inside a UIScrollView. It's one large UIView using a custom subclass of CATiledLayer as its layer.
When I zoom in and out of the UIScrollView, I want the graph to resize dynamically like it does when I return the graph from ...
Started by Ed Marty on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
At the end of the zoom operation, your delegate method scrollViewDidEndZooming:withView on the next zoom operation it ....
The timing of autoreleases differently than on the device (most often when threads are involved it each frame.
|
Ask your Facebook Friends
|
I'd like to zoom and unzoom in ways the base class doesn't support.
For instance, upon receiving a double tap.
Started by Darron on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
By giving UIScrollView another view with identity transform to zoom after the zoom....
zoom bounds are "inverted" after a double-tap, such that when I once was able to zoom in, I can now when the user pinches the view.
|
|
I'm writing a 2D game using OpenGL. When I want to blit part of a texture as a sprite I use glTexCoord2f(u, v) to specify the UV co-ordinates, with u and v calculated like this:
GLfloat u = (GLfloat)xpos_in_texture/(GLfloat)width_of_texture; GLfloat v...
Started by Sirp on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Your xpos/ypos must be based on 0 to (width or height) - 1 and then:
GLfloat u = (GLfloat)xpos_in_texture/(GLfloat)(width_of_texture - 1); GLfloat v = (GLfloat)ypos_in_texture/(GLfloat)(height_of_texture - 1);
Do the division as a double, round the result... .
|
|
Hi,
I have a UIScrollView with the requirement that, when zooming, the contentSize.height should remain the same. Zooming in from 200x100 should result in a new contentSize of 400x100 instead of 400x200, for instance. I'd like to do my own drawing while...
Started by Thomas Müller on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll want to be able to handle when touches happen independently, as well as when a user the approach of letting the UIScrollView....
If ([touches count] != 2 is low.
error in your if statement that may have been preventing this from working.
|
|
Hello, in classic mode, you can remain zoomed with the 'iron sight mode' without aiming down the sight.
How to reproduce the glitch;
1. Right-click to aim and zoom in with 'iron sight mode'.
2. Hold down shift, never let shift go.
3. Press right-click...
Started by Makiriv on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at tripwireinteractive):
|
|
Seems I'm the resident tech guy I'm tasked with fixing a camera. Even though this camera has sat more than getting used suddenly the lens stays extended all the time. If I turn it on it closes fully and extends again...then if I turn it off it closes ...
Started by SBMongoos on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at digitalcamerareview):
Dust may have.
Usually when you have a lens error there's a problem with the lens mechanism itself.
|
|
T is a runtime error 36?
A runtime error 36 is what happens when the software or programs get a corrupted file and no longer continue to work - which gives you errors. They can also cause you to lose information that you are currently working on.
What...
Started by balk1b4j34 on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at messageboard):
|
|
I have some code that does custom drawing. Basically it is form fill program that has a WYSIWYG editor. The editor allows a zoom level to be set. I am having problems with the width of my labels jumping to different sizes relative to everything else on...
Started by Mark Elder on
, 6 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The SynEdit component....
By setting the MM_ISOTROPIC or MM the zoom value changes.
Given pixels are very small it will be possible to finely zoom in or out.
The fundamental problem is that you try to zoom the text by changing its Height .
|