How to stop unwanted UIButton animation on title change?

前端 未结 24 2765
面向向阳花
面向向阳花 2020-11-28 19:07

In iOS 7 my UIButton titles are animating in and out at the wrong time - late. This problem does not appear on iOS 6. I\'m just using:

[self setTitle:text fo         


        
24条回答
  •  孤街浪徒
    2020-11-28 19:41

    Please note :

    when "buttonType" of _button is "UIButtonTypeSystem", below code is invalid

    [UIView setAnimationsEnabled:NO];
    [_button setTitle:@"title" forState:UIControlStateNormal];
    [UIView setAnimationsEnabled:YES];
    

    when "buttonType" of _button is "UIButtonTypeCustom", above code is valid.

提交回复
热议问题