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

I add 10 buttons to UIScrollView

for (int i=0; i<10; i++) {

     UIButton *btn =  ....  

     [ScrollView addSubview:btn];

}

How can i refer to each button ?

share|improve this question
You don't need that int part. – Sneakyness Dec 27 '09 at 7:04

2 Answers

up vote 5 down vote accepted
btn.tag = i;

and later,

[scrollView viewWithTag: 2];
share|improve this answer
Thank you very much. – aon Dec 27 '09 at 7:49

Either set the tag on each view, and find them using viewWithTag, or save references to each in an NSMutableArray or other data structure.

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.