Search Results

1
vote
1answer
203 views

Encoding C Structs

I have a struct defined like follows as part of an object. I'm trying to encode this for use with NSCoder with the aim of saving as well as Undo/Redo functionality. struct myCol { …
1
vote
2answers
145 views

MouseUp and NSArrayController

How do you associate a -mouseUp: event with the -add: method of a NSArrayController? The -mouseUp: event lives in a different object but is #import …
1
vote
3answers
161 views

Undo and Object release

Newbie question. I have a NSMutableArray that holds multiple objects (objects that stores bezier paths and related variables e.g. path colour ect.) These are properly released whenever the …
9
votes

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

Debugging - how to using gdb Being a newbie still, I find trapping and identifying faults a rather daunting job. The console, despite it being a powerful tool, usually does n …
2
votes

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

Some tips to be found here: http://www.meandmark.com/xcodetips.html …