I have a class called GraphicObject that looks like this:
#import <Foundation/Foundation.h>
@interface GraphicObject : NSObject
{
int fillColor;
int lineColor;
BOOL filled;
}
-(void) fillColor: (int) fc;
-(void) lineColor: (int) lc;
-(int) getFilledColor;
-(int) getLineColor;
-(BOOL) filled: (int) isFilled;
@end
And I created 3 other files of Rectangle, Circle and Triangle (each of course have .h/.m).
For them to have access to this exact same methods, is it enough to just #import the GraphicObject.h ?
This is the GraphicObject.m :
#import "GraphicObject.h"
#import "Rectangle.h"
//--------------------------Get and Set filled/line colors----------------------------------//
-(void) fillColor:(int)fc
{
fillColor = fc;
}
-(void) lineColor:(int)lc
{
lineColor = lc;
}
-(int) getFilledColor
{
return fillColor;
}
-(int) getLineColor
{
return lineColor;
}
//-------------------------------------Is filled?--------------------------------------------//
-(BOOL) filled:(int)isFilled
{
isFilled = fillColor;
return isFilled;
}
I tried to do this from main :
Rectangle *myR = [[Rectangle alloc] init];
[myR fillColor:1];
NSLog(@"%i", myR.getFilledColor);
And im getting error...appreciate the help.

@implementationsection in the.mfiles. – trojanfoe Feb 13 at 22:06