6
votes
5answers
701 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 …
6
votes
Objective-C switch using objects?
You should take advantage of Key-Value Coding:
[character setValue:currentElementText forKey:elementName];
If the data is untrusted, you might want to check that t …
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
Building objective-c code on windows platform
There is also Cocotron. There's a good post of how it was used for the Windows port of a desktop client for an iPhone app (FileMagnet) in …
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 …
1
vote
SQLite record not correct on iPhone simulator
You can use lsof to list the files open by a process, which can hopefully help you nail down which database is being used. Find the process ID of your application with Activity Monitor …
