2
votes
1answer
740 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?
…
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 …
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 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:.
…
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 …
5
votes
How accurate is the triangulated GPS of the non-3G iPhone?
The CLLocation class has the properties 'horizontalAccuracy' (for latitude/longitude) and 'verticalAccuracy' (for elevation).
In addition to cell towers and GPS, locations may also determin …
0
votes
UIButton to cover a UITableViewCell
This may be beside the point, but your code may have the problem where another button is added to the cell every time the cell is re-used.
…
5
votes
Does Instruments (ObjectAlloc/Leaks) require the simulator?
My device worked with Instruments after following these steps:
Unplug the iPhone.
In XCode, open the Organizer.
Delete the device.
Plug device in.
…
3
votes
What classes do I use to make an iPhone act as a server?
Google Toolbox for Mac has a class called GTMHTTPServer.
Deusty Designs has a project called …
3
votes
iPhone SDK - Converting project from 2.1 to 2.2.1
It's safe to install. You don't have to "convert" anything. Your projects will continue to work. There are no new API's in 2.2.1. The documentation is a single page that tells you to refer to the 2 …
4
votes
Changing the UIBackButtonItem title
I've had success by creating my own UIBarButtonItem instead of setting the title of the existing one:
UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" st …
2
votes
What happens to the root view in UINavigationViewController when you push on a new view?
Under low memory conditions, your controller's 'view' property will automatically be set to nil, if it's not on screen. Then the view will automatically load again when it is needed - and viewDidLo …
0
votes
Download File From short URL
You may want to try the GTMHTTPFetcher class, which is part of Google Toolbox for Mac. It handles redirection for you. …
