Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my app I am using a UIScrollView with multiple views (each view having buttons, scrollview and labels). By using for loop I am loading that views into UIScrollView. But when I tried to get touch actions in views inside UIScrollView only last view is able to access. How can we get touch access to all views inside UIScrollView?.

Any help or suggestion to do this.

share|improve this question
show some code atleast to understand what you are doing.. – R.A Dec 26 '12 at 13:37

2 Answers

up vote 0 down vote accepted

Just assign tag value to your all yourView then access your view

UIView *yourView = (UIView*)[ScrollView viewWithTag:tag];  

Or

NSArray *yourView =(NSArray*)[ScrollView subviews];

NSLog(@"Your subView %@",[yourView objectAtIndex:index]);
share|improve this answer

As Rajneesh071 said , first of all you have to assign tag value to all your uiviews and then you can use it like this :

for (UIView *subview in [myScrollView subviews])
{
   //check if the current subview is one of the UIViews
   if (subview.tag == 100){
        //do something with the UIView
   }
}
share|improve this answer

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.