我是靠谱客的博主 陶醉黄豆,最近开发中收集的这篇文章主要介绍[IOS]UIButton的Title左对齐,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

[IOS]UIButton的Title左对齐



-(void)cRemindInfo:(float)hight{
     UIScrollView *tempSV = (UIScrollView *)[self.view viewWithTag:1002];
    float tempHeight = tempSV.frame.origin.y +tempSV.frame.size.height;
    for (int i = 0; i < 3; i ++) {
        UIButton *tempBut = [[UIButton alloc] init];
        [tempBut setFrame:CGRectMake(0, tempHeight+i*hight, self.view.frame.size.width, hight)];
        [tempBut setTitle:[NSString stringWithFormat:@"提示信息:%d",i] forState:UIControlStateNormal];
        [tempBut setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];//默认字体为白色

//        [tempBut.titleLabel setTextAlignment:NSTextAlignmentLeft];//使用此方法不能达到目的
        //设置UIButton的Title左对齐,
        tempBut.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
        tempBut.contentEdgeInsets = UIEdgeInsetsMake(0,10, 0, 0);//title偏移
        [self.gBootSV addSubview:tempBut];
    }
    
}



示图:



最后

以上就是陶醉黄豆为你收集整理的[IOS]UIButton的Title左对齐的全部内容,希望文章能够帮你解决[IOS]UIButton的Title左对齐所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部