I have: typedef float DuglaType[3];
@interface Foo : NSObject {
DuglaType _duglaType;
}
How do I correctly declare the property?
I tried:
// .h
@property DuglaType duglaType;
// .m
@synthesize duglaType = _duglaType;
But this spews errors.
What is the secret handshake for C++ typedefs to play nice with Obj-C properties? Thanks.
Cheers,
Doug