0
votes
1answer
167 views
Sync Services Client and Schema Xcode Project Structure
I'm starting work on a project that will be primarily acting as a Sync Services client. Ideally, the project will have two components: a custom schema bundle and a preference pane.
As a fir …
7
votes
6answers
370 views
What is the type of an enum whose values appear to be strings?
I am working with Apple's ScriptingBridge framework, and have generated a header file for iTunes that contains several enums like this:
typedef enum {
…
0
votes
1answer
795 views
Why do NSString and NSLog appear to handle %C and %lc (and %S and %ls) differently?
Apple's String Format Specifiers document claims,
…
29
votes
What are those little Xcode tips & tricks you wish you knew about 2 years ago?
I'm a big fan of the Open Quickly feature, which is particularly good in Xcode 3.1 and later. When you want to open a file or a symbol definition that's in your project or in a framework, just hit …
6
votes
NSCoder vs NSDictionary, when do you use what?
Apple's documentation on object graphs has this to say:
…
2
votes
NSThread and UIViewController interaction
As the documentation says, "If you’re not sure about a particular graphical operation, plan on doing it from your main thread."
A good rule of thumb to follow is that, if a class isn't expl …
1
vote
Programmatically Update an attribute in Core Data
The Apple documentation on using managed objects in Core Data likely has you …
2
votes
Techniques for implementing -hash on mutable Cocoa objects
My reading of the documentation is that a mutable object's value for hash can (and probably should) change when it is mutated, but should not change when the object h …
0
votes
NSXMLParser and error constants
That enum defines all of the NSXMLParserErrors. If you want (slightly) more detail, you can click on a particular constant in the list.
…
