Search Results

5
votes
4answers
1k views

NSCoder vs NSDictionary, when do you use what?

I'm trying to figure out how to decide when to use NSDictionary or NSCoder/NSCoding? It seems that for general property lists and such that NSDictionary is the easy way to go that generates …
1
vote

Cocoa and Objective-C resources?

As others have mentioned Cocoa Programming for Mac OSX is a very good choice for a book. Make sure that you get the third edition if you're using Leopard and Xcode 3.0 or later. There were some c …
1
vote

Developer Setup for Starting Out with Cocoa/Mac Programming

You might try the demo of textmate and see how you like it for working with objective-c or any other type of text really. It will import xcode p …
3
votes

Why is my cocoa program getting EXC_BAD_ACCESS during startup?

I've seen times where this can happen when you are trying to access a object that you didn't retain properly so its either not pointing to a valid copy of your object or its pointing to an object o …
5
votes

What are those little Xcode tips & tricks you wish you knew about 2 years ago?

When you use code completion on a method and it has multiple arguments, using CTRL + / to move to the next argument you need to fill in. …
1
vote

How do you toggle the status item in the menubar on and off using a checkbox?

Get an outlet to your button you want to toggle and then create an action method that your checkbox points to that toggles the hidden property of the original button based on the check box status. …