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.
…
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
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.
…
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 …
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 …
0
votes
Another appropriate use of @property design question
A property should map, intuitively if not exactly, to some storage mechanism of your class - be it an ivar declared in your @interface or something synthesized by the runtime. The act …
1
vote
Algorithm: array of arrays in Cocoa Touch (perhaps using NSCountedSet)
And NSDictionary is a hash table.
…
1
vote
Does using lists of structs make sense in cocoa?
In general, the use of a struct implies the existence of a relatively simple data type that has no logic associated with it nor should have any logic associated with it. Take an NSPoint …
1
vote
Should I use NSDecimalNumber to deal with money?
I've found it convenient to use an integer to represent the number of cents and then divide by 100 for presentation. Avoids the whole issue.
…
1
vote
Interface Builder vs. What’s Displayed on iPhone
Hi Keith,
Can you verify that the PNG files are saved with a pixel density of 72dpi? Also, what type of UI element are you using? (UIButton, UIImageView, etc). It would help if you could …
