So I\'m trying to update the text on a UIButton when I click it. I\'m using the following line to change the text:
calibrationButton.titleLabel.text = @\"Cal
programmatically you can set button title like below:
[myButton setTitle:@"buttonTitle" forState:UIControlStateNormal];
you can also set button title property from storyboard.