I am having trouble changing the title of UIButton btn2 once btn1 is pressed. When I use _definition settitle:@\"Show Word\" forState: UIControlStateNormal it chan
_definition settitle:@\"Show Word\" forState: UIControlStateNormal
u can try this way:
[_definitionPressed setTitle:@"Normal State" forState:UIControlStateNormal]; [_definitionPressed setTitle:@"Selected State" forState:UIControlStateHighlighted];
Try something along the lines of:
[btn2 setTitle:@"Show Word"]