could you please write code. i have 7 buttons with tags: 1, 2, 3 ...
how to change title of the button with tag 3 ?
please help me.
thanks
UIButton* button = (UIButton *)[self.view viewWithTag:myTag];
[button setTitle:myTitle forState:UIControlStateNormal];
UIButton* button = (UIButton *)[self.view viewWithTag:myTag];
[button setTitle:myTitle forState:UIControlStateNormal];
Ohh, I understood.
But I don't use any View. I placed my controls (UIButton, UILabel) in UIWindow. How to solve this problem?