Search Results

1
vote

Do I still need to learn about managing memory now that Objective-C/Cocoa has Garbage collection?

It is probably worth learning about the concepts that underpin Cocoa memory management, as it's still useful in certain situations. The iPhone OS, for example does not support garbage collection. T …
1
vote

Why the Observer in NSNotification called twice… ?

If the observer class is registered for a notification by name, but not against a specific object, it will receive multiple messages, as it will be invoked every time the notification occurs, regar …
2
votes

iPhone Memory Leaks

Memory leaks are blocks of memory allocated by the OS for your program to use while it is running, but not correctly returned as not in use when the program has finished with them. So this memory i …
5
votes

How can I find out the type of a NSDictionary element?

There's various sorts of introspection you can perform on any object at runtime, contained within the NSObject protocol. …
0
votes

Foreign key definition in sqlite

If you use the Cocoa CoreData framework, and define a managed object model, using SQLite as the persistent store - you can specify the relations between your model, and specify deletion rules ( su …
5
votes

Good book for Objective-C

Aaron Hillegass' "Cocoa Programming for Mac OS X" is the best introductory book I know of. It's focused on Mac progr …