UITableViewCell Internal View Hierarchy Change in iOS 7
Using iOS 6.1 SDK
-
<UITableViewCell>
-
| <UITableViewCellContentView>
-
| | <UILabel>
Using iOS 7 SDK
-
<UITableViewCell>
-
| <UITableViewCellScrollView>
-
| | <UIButton>
-
| | | <UIImageView>
-
| | <UITableViewCellContentView>
-
| | | <UILabel>
The new private UITableViewCellScrollView class is a subclass of UIScrollView and is what allows this interaction:
Solution found from curiousfind by,
Senior Software Engineer
TopOfStack Software Ltd.