NSString* const someString = @"foo";
in SharedDefs.m
If you have no SharedDefs.m just crete one ;)
atze
Am 25.06.2009 um 10:44 schrieb WT:
Hello list,
I have a linking error that is puzzling me and I'd be grateful for
some enlightenment.
In AppDelegate.h:
#impor
On Jun 25, 2009, at 11:46 AM, WT wrote:
On Jun 25, 2009, at 11:38 AM, Dave Keck wrote:
The link error is pretty self-explanatory. To solve issues like this,
I'd first change the header like so:
extern NSString *const someString;
and create a SharedDefs.m:
NSString *const someString = @"
On Jun 25, 2009, at 11:38 AM, Dave Keck wrote:
The link error is pretty self-explanatory. To solve issues like this,
I'd first change the header like so:
extern NSString *const someString;
and create a SharedDefs.m:
NSString *const someString = @"halla";
This way, any object file can r
25.06.2009 um 10:44 schrieb WT:
Hello list,
I have a linking error that is puzzling me and I'd be grateful for
some enlightenment.
In AppDelegate.h:
#import "SharedDefs.h"
In AppDelegate.m:
#import "AppDelegate.h"
#import "SomeClass.h"
In SomeClass.m:
The link error is pretty self-explanatory. To solve issues like this,
I'd first change the header like so:
extern NSString *const someString;
and create a SharedDefs.m:
NSString *const someString = @"halla";
This way, any object file can reference someString, but only one
object file wi
Hello list,
I have a linking error that is puzzling me and I'd be grateful for
some enlightenment.
In AppDelegate.h:
#import "SharedDefs.h"
In AppDelegate.m:
#import "AppDelegate.h"
#import "SomeClass.h"
In SomeClass.m:
#import "SomeClass.h"
Folks;
I'm trying to build a test case for a DTS support incident regarding
an issue I posted earlier concerning CoreData in Leopard.
I have an existing app which compiles without inicident on both Tiger
& Leopard.
To build the DTS test project, in Leopard I added the data model and
sever