
Hi,
Could anybody help me.
I have an array with buttons. Now I want to tell the method, that I want to press the second button of the array.
Here is my code:
...
for (Slider *slider in sliders) {
[slider trackSelectorBTN:Slider=2]; // Here is my Problem: How can I sent only the number of the senders.tag?
}
...
method:
- (void)trackSelect:(UIButton *)sender {
currentTrack++;
}