How do you change the text of the button and disable a button in iOS?
To Change Button title:
[mybtn setTitle:@"My Button" forState:UIControlStateNormal]; [mybtn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
For Disable:
[mybtn setEnabled:NO];