i've got a probleme with an UISlider
in a Master-detail application
:
I've put my slider on the detail view, and I've link it into DetailViewController.h
, and i let it empty into DetailViewController.m
.
So i've got in DetailViewController.h :
- (IBAction)mySlider:(id)sender;
and in DetailViewController.m :
- (IBAction)mySlider:(id)sender {}
When i try to compilate, i've got this exception :
'NSUnknownKeyException', reason: '[<DetailViewController 0x754d490> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key mySlider.'
Do you know why?
Thanks.