How do you change the text of the button and disable a button in iOS?
Assuming that the button is a UIButton:
UIButton
UIButton *button = …; [button setEnabled:NO]; // disables [button setTitle:@"Foo" forState:UIControlStateNormal]; // sets text
See the documentation for UIButton.