-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 …
5
votes
How does NSMutableData work?
Check if receivedData == nil. If so, then you might have forgotten to initialize it. For example:
receivedData = [[NSMutableData alloc] init];
Then re …
3
votes
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 …
2
votes
iPhone SDK: Convert Byte Array to NSString?
This is wrong:
[data appendBytes:&buffer length:len];
It should be:
[data appendBytes:buffer length:len];
…
1
vote
Send an email from an iPhone app containing an img tag.
What happens when you call openURL?
You can try encoding the quotation mark (%22), less-than (%3C) and greater-than (%3E) characters.
…
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
UIWebView - stringByEvaluatingJavaScriptFromString - not changing text box value
Does it work if you wait for the page to finish loading first?
…
1
vote
iPhone - cannot run code on device
Check the Target properties, not just the Project, because it could be overridden there.
…
2
votes
what’s the biggest and most frequented forum/board for iphone development?
I recommend the iPhoneSDK group on Google. It is frequented by experts.
…
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.
…
