I'm fairly new to objetive C and I'm having trouble declaring a method that takes two parameters. In my .h file I have the following:
-(void)refreshTime:(NSTimeInterval *) absoluteTimeRemainSeconds, (NSDate *) targetDate; And in my .m file I have the following:
-(void) refreshTime:(NSTimeInterval *) absoluteTimeRemainInSeconds, (NSDate *) targetDate { I want the method two accept two parameters, an NSTimeInterval and an NSDate, but they way I have it now its not working. Can anyone see my error? An help would be greatly appreciated.