xcode UIButton创建监听按钮点击自定义按钮 状态 内边距

Posted 与格律上

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xcode UIButton创建监听按钮点击自定义按钮 状态 内边距相关的知识,希望对你有一定的参考价值。

代码创建

//创建UIButton

        UIButton * btnType=[[UIButton alloc]init];

        //设置UIControlStateNormal状态下的文字颜色

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

        //设置字体大小

        btnType.titleLabel.font=[UIFont systemFontOfSize:9.0];

        //设置边框的宽度

        btnType.layer.borderWidth=1;

        //设置边框的颜色

        btnType.layer.borderColor=[[UIColor lightGrayColor]CGColor];

        //设置UIControlStateNormal的文字

        [btnType setTitle:@"按钮设置名字" forState:UIControlStateNormal];

        //设置UIControlStateNormal的图片

        [btnType setImage:[UIImage imageNamed:@"获取Assets.xcassets图片名称"] forState:UIControlStateNormal];

        //设置UIControlStateNormal背景图片

        [btnType setBackgroundImage:[UIImage imageNamed:@"获取Assets.xcassets图片名称"] forState:UIControlStateNormal];

        //设置失效状态

        btnType.enabled=NO;

监听按钮点击

//只要按钮触发了UIControlEventTouchUpInside事件,就调用self对象buttonClick方法

[btn addTarget:self action:@selector(buttonClick) forCOntrolEvents:UIControlEventTouchUpInside];

 

自定义按钮

-(CGRect)titleRectForContentRect:(CGRect)contentRect{

        // 返回文字的frame   

 } 

-  (CGRect)imageRectForContentRect:(CGRect)contentRect{

        // 返回图片的frame

 }

 

按钮显示的状态

设置不能点击 enabled 等于NO

adjustsImageWhenDisabled 等于NO  在Disabled下要不要调整显示的图片

adjustsImageWhenHighlighted 高亮下不要调整图片

 

按钮内边距

通过代码设置   contentEdgeINsets =   uiedgeInsetsMake 设置内边距

 contentEdgeInsets=UIEdgeInsetsMake(<#CGFloat top#>, <#CGFloat left#>, <#CGFloat bottom#>, <#CGFloat right#>);

设置文字  titleEdgeInsets=uiedgeInsetsMake 设置文字的内边距

titleEdgeInsets=UIEdgeInsetsMake(<#CGFloat top#>, <#CGFloat left#>, <#CGFloat bottom#>, <#CGFloat right#>);

设置图片 imageEdgeInsets=uiedgeInsetsMake 设置图片的内边距

imageEdgeInsetss=UIEdgeInsetsMake(<#CGFloat top#>, <#CGFloat left#>, <#CGFloat bottom#>, <#CGFloat right#>);

微小调整使用内边距     复杂的话使用自定义按钮

以上是关于xcode UIButton创建监听按钮点击自定义按钮 状态 内边距的主要内容,如果未能解决你的问题,请参考以下文章

UIButton在点击时没有显示任何效果?

带有圆形图像视图的自定义圆形 UIButton

带有 UIButton 的自定义 UITableViewCell:单击了哪个按钮?

UITableViewController 自定义单元格中缺少 UIButton 默认点击淡入淡出动画

通过扩展 UIButton 类使用 Swift 创建自定义按钮

为啥xcode7创建的UIButton点击不灵敏,需要长按才响应点击?