Search Results

6
votes
5answers
713 views

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

I'm exploring the possibility of writing an application in Erlang, but it would need to have a portion written in Cocoa (presumably Objective-C). I'd like the front-end and back-end to be able to c …
1
vote

Global variables as aliases for singletons?

The main purpose of using a method call to get a singleton is so the singleton can be lazily prepared. For example: static State sharedStateInstance; @implementation State + (id)sh …
1
vote

KVO - problem retrieving object from storage and displaying for edition

That error make it feel like a set is involved somewhere. Are you sure you're setting the instance variable to the model object directly, instead of a set of them (possibly even a set with only one …