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;
…
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
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
How to declare an array of floats as a class variable in Objective-C when the dimension is undefined at the class instantiation time?
Here's another way to do it. Create a NSMutableArray object and add NSNumber objects to it. It's up to you to decide whether or not this is sensible.
NSMutableArray *array;
array = …
1
vote
Delegate as external class in Objective-C
Your Control1Delegate object is getting destroyed soon after it is created. All top-level Nib objects must be retained if you want to keep them alive. Refer to the …
2
votes
How expensive is UITableView’s reloadData?
Best thing to do is profile your app to see where it is slow.
That said, if your table cells are all the same height, then I think
reloadData
o …
0
votes
EXC_BAD_ACCESS crash when releasing NSXMLParser
It looks like you are using multiple threads. There could be an issue with that. Threading bugs often do present themselves sporadically. You might also have a bug in your parser delegate methods, …
0
votes
How do I set a custom cell for non databound TableCells
Use the visibleCells method on your table view. Then do what you wish to the cells.
Alternately, you could call indexPathsForVisibleRows to get just the index path …
4
votes
How do I encode “&” in a URL in an HTML attribute value?
I've been using -[NSString gtm_stringByEscapingForURLArgument], which is provided in Google Toolbox for Mac …
1
vote
error with import <cocoa/cocoa.h>
On the iPhone you generally use UIKit instead of Cocoa, which is for Mac OS X.
#import <UIKit/UIKit.h>
You might import just the Foundation framework in a mo …
1
vote
Change UITabBarItem Tent Color on iPhone
There is no supported way to do that without custom drawing. Tab bar items don't even use the colors in your images, only the alpha channel. See also: …
1
vote
iPhone camera pics come up rotated — CGAffineTransformInvert: singular matrix.
The solution I've used is to rotate & flip the image as dictated by the imageOrientation property. There is some code here that will do the trick: …
1
vote
Am I always responsible for didReceiveMemoryWarning being invoked by the iPhone OS?
Memory warnings can happen at any time. There are apps running in the background, like Mail and Safari, doing who-knows-what.
…
4
votes
How can I get current scroll position on UIWebView
This trick works for me.
UIWebView *webView;
int scrollPosition = [[webView stringByEvaluatingJavaScriptFromString:@"window.pageYOffset"] intValue];
…
