Re: [Pyobjc-dev] Embedding Python in an ObjC application
Brought to you by:
ronaldoussoren
From: b.bum <bb...@ma...> - 2004-06-14 20:39:56
|
On Jun 14, 2004, at 1:26 PM, Dan Grassi wrote: > [[[TestPy alloc] init] test]; This line is the problem. You don't have a compiled TestPy class and, as such, there is no way for the linker-- static, dynamic, zero, whatever-- to know how to resolve the resulting symbol. Try: [[[NSClassFromString(@"TestPy") alloc] init] test] |