Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to adjust my subviews in a UIScrollView subclass, but I don't want to disturb the scroll indicators. There doesn't seem to be any public interface to access these and I want to check if a view is one of the scroll indicators or not (so that I can ignore it).

UIScrollView.h declares these two iVars:

UIImageView* _verticalScrollIndicator;
UIImageView* _horizontalScrollIndicator;

...but I tried the following and got a linker error:

for(UIView* v in self.subviews)
{
    // Ignore the scroll-indicator views
    if( (v == _horizontalScrollIndicator) ||
        (v == _verticalScrollIndicator))
    {
        continue;
    }
    // View is one of mine - do stuff to it...
}

Apple obviously don't want you messing with these, in which case they should do something clever so that the array returned from subviews doesn't include them (come on Apple, it's not that hard!), but until then how can I ignore them?

share|improve this question

2 Answers

Presumably you're in control of the views that you put in the UIScrollView. Why not maintain your own array of just those views? That way, you are safe against any future changes in the implementation of UIScrollView.

share|improve this answer
I'm writing a UIScrollView subclass, so I am not in control of those other subviews. I tried overriding didAddSubview: and willRemoveSubview: to keep track, but the scroll indicators must be added normally like any other view because they end up calling these too. – jhabbott Jun 10 '12 at 1:34
I'd go with @KurtRevis on this one. Keep your own array, maintain it by overriding addSubview: and removeSubview: (which I don't think OS calls for the scroll indicators). If you don't want to do that, then a quick and dirty answer with no Apple dependencies is to tag the subviews on addSubview:. When you enumerate subviews, reject the ones with the tag. The downside here is that you'll end up spoiling the tags for subclass's users, who might need the tags left alone. Other solutions I can think of all have dependencies on Apple internals. – danh Jun 10 '12 at 2:29
Apple do use addSubView: to add the scroll indicators so this is not viable. Also anything that does want to track subviews should also keep track in the insertSubview:* methods. – jhabbott Jun 11 '12 at 20:33

Are the scroll indicator views added and removed throughout the lifetime of the scroll view, or are they just added once and hidden and shown as necessary? If it's the latter, you could store your own references to them in init... instead of using the private ivars and proceed as you have tried to already.

share|improve this answer
Unfortunately not - they are added only when needed (i.e. when the user starts scrolling) and removed once they have disappeared. – jhabbott Jun 23 '12 at 12:16
Ahh that's disappointing. – jamesmoschou Jun 24 '12 at 6:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.