I'm calling a method from a uibutton (an array of uibuttons in this case). The problem is that the button should change its UIControlStateSelected immediately and display a new uiimage for the button. It shows the image but only after running the method. The method downloads some data and takes a second or two. The user obviously isn't sure if they touched the button or not in that case until the method is called and the button image selected state changes the image.
Here's the code I'm using for the button(s) selected state:
[catBtn setTitle:[NSString stringWithFormat:@"Button %d", i] forState:UIControlStateNormal];
[catBtn setImage:[UIImage imageNamed:[categoryBtnImages objectAtIndex:i]] forState:UIControlStateNormal];
[catBtn setTitle:@"I'm selected" forState:UIControlStateSelected];
[catBtn setImage:[UIImage imageNamed:[categoryBtnImagesSel objectAtIndex:i]] forState:UIControlStateSelected];
// NSLog(@"%@",[categoryBtnImagesSel objectAtIndex:i]);
[catBtn addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchDown];
[catButtonArray addObject:catBtn];
thanks for any help with this.
