I have a warning and just can't work out how to make it go away.
In my .h I have this...
-(void)restartTimer;
Then the in my .m I have...
-(void)restartTimer{
TimerViewController *TimerView = [[TimerViewController alloc]
initWithInt:hStart
number:mStart];
I get this error:
Warning: no '-initWithInt:number.' method found.
I am sure it is very straightforward, the code still works. If anyone can suggest any ways to solve it that would be great. Thanks