I'm making a class file, something like this :
myclass.h file :
- (void) request

nsstring*)url reqType

int)type;
myclass.m file :
#define POST = 2;
#define FTL = 1;
@implement...
when i call request like this :
[self request:@"somestring" reqType:FTL];
error pop-up saying, error, expected ] before ;
my question is, how exactly to use define? in my case i want to have FTL = 1 value and POST = 2 value. How exactly to do
thx before.