4
votes
5
votes
Unique identifier for an iPhone app.
By far the easiest and most appropriate way to obtain a unique identifier is to use the mechanisms Apple explicitly provides for obtaining one - [[UIDevice currentDevice] uniqueIdentifier] …
3
votes
UIImage rounded corners
You aren't actually doing anything other than scaling there. What you need to do is to "mask" the corners of the image by clipping it with a CGPath. For instance -
- (void)drawRe …
5
votes
iPhone OS Utility App - Flipside View and Main View communication
Ultimately you should be updating some underlying object with the values from the controller. In general, the slider belongs in the view layer - it's a display element. The action that adjusting t …
0
votes
CATransition showing a single frame from the end of the transition before the animation starts
To begin to answer your question more information is needed - for instance, how are you calling that code (e.g. is it bound to a button as an action or is it triggered automatically somehow), have …
5
votes
Cocoa Graphing/Plotting Framework that Works on iPhoneOS
If all you need to do is draw line graphs, take a look at the Seismic example that Apple posted - you can yank large quantities of code from that.
…
2
votes
iPhone: Detecting user inactivity/idle time since last screen touch
Ultimately you need to define what you consider to be idle - is idle the result of the user not touching the screen or is it the state of the system if no computing resources are being used? It is …
0
votes
Using default tab-controller created project… first view controller doesn’t respond to addsubview
It also sounds - and feel free to correct me if I'm mistaken - that you're attaching actions in the view loaded by the tab bar to the tab bar's controller. The two entities are quite different and …
0
votes
Hiding Safari User Interface Components on iPhone
That should indeed behave as expected, I have used it in the past without any difficulties.
…
1
vote
Best way to generate both “free/demo” and commercial apps from the same source code?
It is also worth noting that if a user decides to upgrade to the full version, if you do not have some mechanism in place to transfer over the existing data you will likely see a negative reaction …
4
votes
In CocoaTouch (iPhone OS) how do I find/eliminate leaks that the Instruments Leak tool doesn’t find?
You should also run your application with the memory monitor instruments to see overall system usage on the device.
…
10
votes
Hidden UINavigationController inside UITabBarController
It sounds as though you have a mess on your hands. A UINavigationController is a distinct object that is very different from a UITabBarController. In general, your appli …
9
votes
Best JSON library to use when developing an iPhone application?
Touch JSON tends to be the best in terms of speed and unit test coverage. It's also the most widely adopted and actively developed.
…
1
vote
Deserializing a complex JSON result (array of dictionaries) with TouchJSON
At it's heart JSON deals with objects, your code to de-serialize should be as follows
{"objects":[{"id": "123456", "name": "touchjson"}, {"id": "3456", "name": "bleh"}]}
…
2
votes
