I have changed titles of UIButtons before using:
- (void)setTitle:(NSString *)title forState:(UIControlState)state
But I\'ve r
Attributed titles are obtained via
- (NSAttributedString *)attributedTitleForState:(UIControlState)state
and set via
- (void)setAttributedTitle:(NSAttributedString *)title forState:(UIControlState)state
Formatting the NSAttributedString object is a bit complicated, but setting it to nil will clear the title and that's what I needed.