Hey,
So i have defined a class to extend some other class and i added custom properties for it, say
@interface class:uiclass{
int a;
}
@property(nonatomic,assign) a;
then I synthesize in the implementation....using the accessor and getter methods in the actual class work fine, but now im trying to define an instance of this class in some other class and when i try to use the getter or setter methods for the class the application crashes...what am i doing wrong?
Thanks
So i have defined a class to extend some other class and i added custom properties for it, say
@interface class:uiclass{
int a;
}
@property(nonatomic,assign) a;
then I synthesize in the implementation....using the accessor and getter methods in the actual class work fine, but now im trying to define an instance of this class in some other class and when i try to use the getter or setter methods for the class the application crashes...what am i doing wrong?
Thanks