0
votes
3answers
114 views
memory management, should release be used in this case?
Given the following code snippet from inside a method;
NSBezierPath * tempPath = [NSBezierPath bezierPathWithOvalInRect:pathRect];
[tempPath retain];
[path release] …
2
votes
1answer
194 views
Instantiating new object within switch block - why does it fail?
Why does
switch ([document currentTool]) {
case DrawLine:
NSBezierPath * testPath = [[NSBezierPath alloc]init];
//...rest of code that uses testPath....
…
1
vote
3answers
153 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 …
1
vote
1answer
68 views
convertPoint:
Hi
I'm learning Objective-C and Cocoa (in fits and starts when time allows) so be gentle OK.
A example app has the following lines:
NSPoint down = [mouseEvent locati …
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
…
