Subview access to superview

8.5k Views Asked by At

I have a scrollView with its content view and finally a subview on the content view. I would like to stop scrolling [scrollView scrollEnabled:NO] from the subview. Can I get at the method?

2

There are 2 best solutions below

1
On

I don't have Xcode in front of me, but can't you get at the superview with self.superview from your subview code?

For instance, like so:

[subview.superview scrollEnabled:NO];
0
On

To stop scrolling [scrollView scrollEnabled:NO] from the subview? Maybe you need a viewController which control the views. Do you clear about the MVC?