Hi,
I have a really long objective c function definition, and would like to split it into multiple lines to make the function more readable. Let's say I have this definition:
-(id) initWithBsType:(NSInteger)buysell AccountCode:(NSString *):c_acc_code password:(NSString *)password exchangeCode:(NSString *)ecode productCode:(NSString *)product orderType:(NSString *)otype price:(NSString *)price qty:(NSString *):qty reference:(NSString *)ref enablePriceWarn:(BOOL)enablepw enableApprvWarn:(BOOL)enableaw orderValidity:(NSString *)validity;
What should I insert to split it into 3-4 lines?
(I'm creating an object that can be serialized into xml using libxml, so I need to be able to assign this many params to the object on creation.)