Edit: I’m starting a bounty on this one, as I’m looking for a “cleaner” solution with a UITableViewCell subclass, rather than messing with the UITableView delegate and datasource. Ideally, I’d like to see how could I also handle the UISlider events. Thanks!
I am using a group-styled UITableView and I have several cells that look like this:

Now, while I’m in editing mode, I’d like to have a UISlider that sets the value of the right UILabel, so that the result would look like this:

Could someone point me to the right direction? I’m not even sure if I should do that by subclassing UITableViewCell or in IB. Code snippets would be highly appreciated 🙂
First of all, create a new Navigation-based Project, then create a new class file named
CustomCell.handCustomCell.m, respectively.Copy and paste this code into your RootViewController.m file:
CustomCell.h:
CustomCell.m:
Compile and run and you have a perfectly fine version of the controls you wanted. I even implemented animations as smooth as butter. Have fun!
EDIT:
If you do want to use the editing-controls, you must not implement the following method and have to adjust the frame of the labels and the slider.