美文网首页
设置UIButton的文字和图片显示位置、字体的大小、字体的颜色

设置UIButton的文字和图片显示位置、字体的大小、字体的颜色

作者: Tank丶Farmer | 来源:发表于2017-04-25 17:31 被阅读0次

    btn.frame = CGRectMake(x, y, width, height);

    [btn setTitle: @"search" forState: UIControlStateNormal];

    //设置按钮上的自体的大小

    //[btn setFont: [UIFont systemFontSize: 14.0]];    //这种可以用来设置字体的大小,但是可能会在将来的SDK版本中去除改方法

    //应该使用

    btn.titleLabel.font = [UIFont systemFontOfSize: 14.0];

    [btn seBackgroundColor: [UIColor blueColor]];

    //最后将按钮加入到指定视图superView

    [superView addSubview: btn];

    ==========================================================

    tvnamelabel=[[UIButton alloc]initWithFrame:CGRectMake(5,5,200,40)];

    这样初始化的button,文字默认颜色是白色的,所有如果背景也是白色的话,是看不到文字的,

    btn.contentHorizontalAlignment=UIControlContentHorizontalAlignmentLeft ;//设置文字位置,现设为居左,默认的是居中

    [btn setTitle:@“title”forState:UIControlStateNormal];// 添加文字

    有些时候我们想让UIButton的title居左对齐,我们设置

    btn.textLabel.textAlignment = UITextAlignmentLeft

    是没有作用的,我们需要设置

    btn.contentHorizontalAlignment = UIControlContentHorizonAlignmentLeft;

    但是问题又出来,此时文字会紧贴到做边框,我们可以设置

    btn.contentEdgeInsets = UIEdgeInsetsMake(0,10, 0, 0);

    使文字距离做边框保持10个像素的距离。

    =======================================================

    设置UIButton上字体的颜色设置UIButton上字体的颜色,不是用:

    [btn.titleLabel setTextColor:[UIColorblackColor]];

    btn.titleLabel.textColor=[UIColor redColor];

    而是用:

    [btn setTitleColor:[UIColor blackColor]forState:UIControlStateNormal];

    增加一个 UIButton 上设置不同颜色的字体,也可设置其大小等

    NSString* aStr =@"本人是个大帅哥";

    NSMutableAttributedString*str = [[NSMutableAttributedStringalloc] initWithString:[NSStringstringWithFormat:@"%@",aStr]]; 

    [str addAttribute:NSFontAttributeNamevalue:[UIFontfontWithName:@"Arial-BoldItalicMT"size:16.0]  range:NSMakeRange(0,3)];

    [str addAttribute:NSForegroundColorAttributeNamevalue:[UIColorgreenColor]range:NSMakeRange(0,3)];

    UIButton* butn = [UIButtonbuttonWithType:UIButtonTypeCustom];   

    butn.backgroundColor = [UIColororangeColor];

    butn.frame =CGRectMake(100,200,200,30); 

    [butn setAttributedTitle:str forState:UIControlStateNormal];   

    [butn addTarget:selfaction:@selector(click) forControlEvents:UIControlEventTouchUpInside];   

    [self.view addSubview:butn];

    设置 button 显示网络图片自适应的方法为:

    [buttonsd_setImageWithURL:[NSURLURLWithString:pictureModel.url]forState:UIControlStateNormalplaceholderImage:[UIImageimageNamed:@"Placeholder_240x240.png"]];

    [button.imageViewsetContentMode:UIViewContentModeScaleAspectFill];

    感觉虽然这都是一些简单东西,但有时候有一些小细节注意不到,记录下来希望能帮到有需要的人.

    相关文章

      网友评论

          本文标题:设置UIButton的文字和图片显示位置、字体的大小、字体的颜色

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