Search Results

1
vote

Cocoa and Objective-C resources?

OO Philosophy and Design Patterns The Objective-C 2.0 P …
2
votes

What’s the best way to find out the installed version of the iPhone SDK?

In general, you get the version number for any SDK from the CoreServices/SystemVersion plist file: $Developer/Platforms/$Platform.platform/Developer/SDKs/$SDK.sdk …
4
votes

Sending a message to nil?

In the quotation from the documentation, there are two separate concepts -- perhaps it might be better if the documentation made that more clear: There are several patterns i …
2
votes

Why is my cocoa program getting EXC_BAD_ACCESS during startup?

This is typically indicative of a memory management error. Make sure all your outlet declarations follow best practice: @interface MyClass : MySuperclass { UIClass *myOu …