11
votes
SO iPhone App - anyone else doing one?
I've been thinking of putting together a Cocoa desktop application once Stack Overflow has an API.
…
1
vote
Can anyone recommend a complete ObjC/Cocoa or Cocoa-Touch tutorial?
Scott Stevenson has a lot of good Cocoa tutorials on CocoaDevCentral.
Of course these cover Cocoa, not Cocoa Touch, because the latt …
21
votes
What are best practices that you use when writing Objective-C and Cocoa?
Write unit tests. You can test a lot of things in Cocoa that might be harder in other frameworks. For example, with UI code, you can generally verify that things are connected as …
11
votes
What are best practices that you use when writing Objective-C and Cocoa?
Resist subclassing the world. In Cocoa a lot is done through delegation and use of the underlying runtime that in other frameworks is done through subclassing.
For example, in Java you use …
12
votes
What are best practices that you use when writing Objective-C and Cocoa?
Don't write Objective-C as if it were Java/C#/C++/etc.
I once saw a team used to writing J2EE web applications try to write a Cocoa desktop application. As if it was a J2EE web application …
34
votes
What are best practices that you use when writing Objective-C and Cocoa?
Use standard Cocoa naming and formatting conventions and terminology rather than whatever you're used to from another environment. There are lots of Cocoa developers out there, an …
17
votes
how to do string conversions in objective c?
To really convert from a string to a number properly, you need to use an instance of …
1
vote
Trying to play sound through iPhone Simulator
The first parameter to NSLog is a format string; you're passing [URL description] as the format string to the second use of NSLog. That's bad, because if the description of the URL co …
2
votes
native iPhone database, all data on iPhone
SQLite is part of the supported API available on the iPhone.
Also, 50MB isn't really a "large" database. SQLite will handle it without even blinking.
…
6
votes
Accessing the iPhone’s Call log with the iPhone SDK
There is no access to the call log from Cocoa Touch or other iPhone APIs.
…
10
votes
How secure are the app settings on the iPhone?
The Keychain is where passwords or other sensitive information should be saved.
…
2
votes
How do I assign a name to a control and retrieve it in an event method?
You don't use the name of an object in Interface Builder to refer to that object; it's just there for reference. (Interface Builder will also use it as a hint for what outlets connecting to the co …
2
votes
Timing loop results.
This is what NSTimer is for. Use NSTimer to get each element in the array sequentially.
…
11
votes
Assignment Makes Pointer from Integer Without a Cast
BOOL is a primitive type, not a class, so your method declaration should be
-(void)getUserDefaults:(BOOL)refreshDefaults;
instead. The reason you're …
15
votes
NSString property: copy or retain?
For attributes whose type is an immutable value class that conforms to the NSCopying protocol, you almost always should specify copy in your @property declaration. Specif …
