3
votes
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 …
1
vote
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
Do I have to learn Objective-C for professional Mac Development?
If you try hard enough, you can go about producing software without using Objective-C that has the potential to be great except for the fact that at the end of the day it won't be very good. You w …
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 …
2
votes
How to programmatically generate a PDF from any document on OSX?
The samples available at Cocoa Dev Central should get you started relatively quickly. The implementation provided there …
0
votes
Updating sqlite3 API for Objective-C
It would likely be easier to just drop the library into your project and link it in from there.
…
-5
votes
What is the underlying mechanism for ivar synthesis in the modern Objective C runtime
Ultimately this question is best answered by those bearing wands, staffs, and pointy hats - but I don't believe there is any way to access the variable from an accessor without use the properties a …
4
votes
Avoiding @property-itis (i.e. overuse of properties, when are they appropriate)?
My recommendation to people is to use property's wherever possible. If you are working in a framework, the ability to use non-fragile instance variables in the modern runtime is a huge bonus and i …
0
votes
Xcode Property Automation
I also recommend textexpander which makes the process a little more intuitive and generalized such that the same "snippets" can be used across text editors.
…
1
vote
Using C++ from Objective C : how to allocate/deallocate?
If you have even the slightest hope of retaining what little sanity that we as developers have left you won't do that. It is best to delete your C++ objects. In general, while it is …
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
OOP: Designing a menu system
Putting all the contents of the menus into a dictionary, dumping to a plist and reading each as necessary by the menu screens is likely the simplest route but in all honesty, you should consider ta …
3
votes
Memory Usage on convenience method vs init method
Your autoreleased objects created by the convenience methods will not be released until the containing autorelease pool is drained. It is advisable to wrap memory intensive operations inside of an …
