美文网首页
UIButton 中title左对齐

UIButton 中title左对齐

作者: jaychowbin | 来源:发表于2016-04-13 14:50 被阅读50次
    //让Btn中的文本框左对齐
    lableBtn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft; 
    //让向右偏移20像素,不会紧贴着很难看
    lableBtn.titleEdgeInsets = UIEdgeInsetsMake(0, 20, 0, 0);
    

    相关文章

      网友评论

          本文标题:UIButton 中title左对齐

          本文链接:https://www.haomeiwen.com/subject/ysowlttx.html