Search Results

2
votes

Understanding reference counting with Cocoa / Objective C

If you're writing code for the desktop and you can target Mac OS X 10.5, you should at least look into using Objective-C garbage collection. It really will simplify most of your development — that …
10
votes

How do you name your instance/param values?

Most Cocoa projects use underbar as a non-IBOutlet instance variable prefix, and use no prefix for IBOutlet instance variables. The reason I don't use underbars fo …
1
vote

How do you name your instance/param values?

Andrew: There actually are plenty of Cocoa developers who don't use instance variable prefixes at all. It's also extremely common in the Smalltalk world (in fact, I'd say it's nearly unheard-of in …
1
vote

Cocoa - best way to capture key events in NSTextView?

It's important to tell us what you're really trying to accomplish — the higher-level goal that you think capturing key events in an NSTextView will address. For example, when someone asks m …
8
votes

In Cocoa do I need to remove an Object from receiving KVO notifications when deallocating it?

You need to use -removeObserver:forKeyPath: to remove the observer before -[NSObject dealloc] runs, so yes, doing it in the -dealloc method of your class woul …
2
votes

Drawing a view hierachy into a specific context in Cocoa

You can use …
1
vote

Drawing a view hierachy into a specific context in Cocoa

You can use …
1
vote

Developer Setup for Starting Out with Cocoa/Mac Programming

One other suggestion: If you have feature or enhancement requests, or bugs that you've run into, be sure to file them at Apple's Bug Reporter …
10
votes

SO iPhone App - anyone else doing one?

I've been thinking of putting together a Cocoa desktop application once Stack Overflow has an API. …
3
votes

Height of NSTextView with one line?

The NSFont class has a method that can give you the size of a rectangle that would enclose a specific attributed string. Get the font used by your text view, create a string that serves as a reaso …
21
votes

Objective-C: Passing around sets of data

You're on the right track. Cocoa's collection classes — which all have mutable an immutable variants — are: NSArray: ordered, can contain an object multiple times NSD …
47
votes

What is the best way to unit test Objective-C code?

Xcode includes OCUnit, an Objective-C unit testing framework, and support for running unit tests (OCUnit or otherwise) as part of y …
4
votes

NSEnumerator performance vs for loop in Cocoa

Using the new for (... in ...) syntax in Objective-C 2.0 is generally the fastest way to iterate over a collection because it can maintain a buffer on the stack and get batches of item …
4
votes

Cocoa tips for PHP developers?

Yes, you're really best off learning C and then Objective-C. There are some resources that will get you over the C and Objective-C language learning curve: Uli Kusterer's online book …
7
votes

What’s a good way to write a Cocoa front-end to an Erlang application?

One way would be to have the Erlang core of the application be a daemon that the Cocoa front-end communicates with over a Unix-domain socket using some simple protocol you devise. The use o …

1 2 3 4 5 next
15 30 50 per page