I have an UITableViewCell with an UIStepper on it. When the stepper value change it triggers a method:
-(void) stepperDidStep: (UIStepper*) sender
I need to get the UITableViewCell from the sender.
Until iOS7 this code worked fine:
-(void) stepperDidStep: (UIStepper*) sender
{
UITableViewCell *cell = (UITableViewCell*) sender.superview.superview;
//...
}
Now, in iOS7+Autolayout I get this:
UITableViewCell *cell = (UITableViewCell*) sender.superview;
cell is UITableViewCellContentView
UITableViewCell *cell = (UITableViewCell*) sender.superview.superview;
cell is UITableViewCellScrollView (???)
Question: What is the best way to get the cell from the stepper in iOS7?
Thanks
Nicola