UIButton title换行

来源:互联网 发布:联通宽带用广电网络 编辑:程序博客网 时间:2024/06/14 02:49

  UIButton title换行关键代码:

  

    [_button setTitle:@"123\n456"forState:UIControlStateNormal];

    _button.titleLabel.numberOfLines = 0;

    _button.titleLabel.lineBreakMode = NSLineBreakByWordWrapping;

    _button.titleLabel.textAlignment = NSTextAlignmentCenter;

    _button.titleLabel.font=[UIFontsystemFontOfSize:14];

0 0