2
votes
1answer
755 views
Does UIWebView leak memory?
If your iPhone app uses a UIWebView, and loads many pages with large images, you may find that you are leaking memory. Can this be resolved?
…
1
vote
Is it just the iPhone simulator that is restricted to intel only Mac’s?
If you actually want to run your binary on the device, not just the simulator, you need the advice from the following page:
…
3
votes
Using Interface Builder for UITableView’s
You can create the cell with Interface Builder, but you have to make it a top-level object, rather than a child of the table view. Then you can return this cell in your view controller's ta …
3
votes
9
votes
Determining when an EDGE connection comes back after a dropout on an iPhone
Reachability notificataions didn't seem to be reliable for me either, for detecting Wi-Fi. So I just use polling instead. Checking every 5 seconds seems to do no harm.
- (void) chec …
0
votes
How to scale a UIImageView proportionally ?
You could try making the imageView size match the image. The following code is not tested.
CGSize kMaxImageViewSize = {.width = 100, .height = 100};
CGSize imageSize = image.size;
…
0
votes
How to push pixels faster on the iPhone?
To my knowledge, OpenGL is supposed to be the fastest way to do graphics on the iPhone. This includes 2D and 3D. A UIView is backed by a core animation layer, which ends up drawing with OpenGL anyw …
2
votes
How long does it take to get an app approved for the AppStore?
My first app took 7 days to get rejected because I left the demo/test account info blank. This was not applicable to my app so I don't know what the problem was. I resubmitted and was accepted in 7 …
1
vote
Best way to transition between two images in a UIImageView
The trick is you make two UIImageView instances. You swap them in between calls to UIView +beginAnimations and +commitAnimations.
…
1
vote
What do I need to test on the iPod touch (besides the actual device) ?
You'll have to make a new provisioning profile that has device ids for your iPhone and iPod touch. But your certs will be fine as is.
…
-1
votes
How do I make iPhone SpringBoard show two or more icons for one application bundle?
Have you tried it to see if it works? If it doesn't work, you could create a second app that does nothing but launch the first one, with a custom URL scheme. The first app can recognize when it is …
0
votes
How do i tell my application to close?
Apple's documentation says there is no "normal" way to shut down. In your case - an unhandled exception - immediate termination makes sense anyway.
…
5
votes
Best way to store static reference arrays/dicts in Cocoa touch
Use a property list file. Load it with NSDictionary +dictionaryWithContentsofFile:.
…
0
votes
What are the iPhone app-name restrictions? (And [where] are they documented?!)
Have you tried the CFBundleDisplayName key in Info.plist?
…
6
votes
Generating iPhone Camera Roll Thumbnails
To save a photo on the iPhone, refer to this:
http://stackoverflow.com/questions/178915/how-to-save-p …
