IOS UIButton解读

UIButton控件是应用界面中常用的一个控件,用法总结:

一、初始化

UIButton的初始化一般使用其类方法,+ (id)buttonWithType:(UIButtonType)buttonType;

风格的枚举如下:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

typedef NS_ENUM(NSInteger, UIButtonType) {

    //用户自定义,无风格

    UIButtonTypeCustom = 0,  

    //系统默认风格                       

    UIButtonTypeSystem NS_ENUM_AVAILABLE_IOS(7_0), 

    //一下这三种创建出来的按钮一样,一个蓝色的圆圈,中间有个叹号

    UIButtonTypeDetailDisclosure,

    UIButtonTypeInfoLight,

    UIButtonTypeInfoDark,

    //创建+号按钮

    UIButtonTypeContactAdd,

    //废弃

    UIButtonTypeRoundedRect = UIButtonTypeSystem,

};

二、属性设置

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

@property(nonatomic) UIEdgeInsets contentEdgeInsets UI_APPEARANCE_SELECTOR;

//这个属性设置button里内容的偏移量,包括title和image,可以用如下方法设置

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

 

@property(nonatomic) UIEdgeInsets titleEdgeInsets;

//这个属性设置标题的偏移量         

@property(nonatomic) BOOL reversesTitleShadowWhenHighlighted;

//按钮高亮时,是否改变阴影效果

@property(nonatomic) UIEdgeInsets imageEdgeInsets;

//图片的偏移量              

@property(nonatomic)BOOL  adjustsImageWhenHighlighted;

//设置图片的绘制是否高亮时变暗   

@property(nonatomic)BOOL  adjustsImageWhenDisabled;

//设置图片是否轻绘制当按钮禁用时

@property(nonatomic)BOOL showsTouchWhenHighlighted;

//设置是否显示手指印在按钮高亮的时候

@property(nonatomic,retain)   UIColor     *tintColor NS_AVAILABLE_IOS(5_0); 

//这个属性会作用于标题和图片,但是如果你是自定义风格的按钮,这个属性将不起任何作用,它只作用于系统的

@property(nonatomic,readonly) UIButtonType buttonType;

//设置button的风格

三、一些set方法

?


1

2

3

4

5

6

7

8

9

10

11

12

- (void)setTitle:(NSString *)title forState:(UIControlState)state;

//设置标题和显示当前标题的按钮状态 

- (void)setTitleColor:(UIColor *)color forState:(UIControlState)state;

//设置标题颜色和显示当前颜色的按钮状态 

- (void)setTitleShadowColor:(UIColor *)color forState:(UIControlState)state; 

//设置标题阴影颜色及显示时的状态

- (void)setImage:(UIImage *)image forState:(UIControlState)state; 

//设置按钮图片和显示当前图片时的状态

- (void)setBackgroundImage:(UIImage *)image forState:(UIControlState)state;

//设置按钮背景图片和显示图片时的状态

- (void)setAttributedTitle:(NSAttributedString *)title forState:(UIControlState)state NS_AVAILABLE_IOS(6_0);

//通过AttributeString创建标题

注意:按钮图片设置和背景图片的不同在于:

        1、设置图片,如果有标题会和标题并列显示

        2、设置背景图片会出现在标题下面

        3、图片的偏移量可以设置,背景图片不可以。

四、一些get方法,可以得到上述设置的属性

?


1

2

3

4

5

6

- (NSString *)titleForState:(UIControlState)state;       

- (UIColor *)titleColorForState:(UIControlState)state;

- (UIColor *)titleShadowColorForState:(UIControlState)state;

- (UIImage *)imageForState:(UIControlState)state;

- (UIImage *)backgroundImageForState:(UIControlState)state;

- (NSAttributedString *)attributedTitleForState:(UIControlState)state NS_AVAILABLE_IOS(6_0);

五、一些只读属性

?


1

2

3

4

5

6

7

8

9

@property(nonatomic,readonly,retain) NSString *currentTitle;        

@property(nonatomic,readonly,retain) UIColor  *currentTitleColor;    

@property(nonatomic,readonly,retain) UIColor  *currentTitleShadowColor; 

@property(nonatomic,readonly,retain) UIImage  *currentImage; 

@property(nonatomic,readonly,retain) UIImage  *currentBackgroundImage; 

@property(nonatomic,readonly,retain) NSAttributedString *currentAttributedTitle NS_AVAILABLE_IOS(6_0); 

//这两个参数需要注意,虽然他们是只读属性不能重新设置,但是我们可以设置label和imageView的相关属性

@property(nonatomic,readonly,retain) UILabel     *titleLabel NS_AVAILABLE_IOS(3_0);

@property(nonatomic,readonly,retain) UIImageView *imageView  NS_AVAILABLE_IOS(3_0);

六、下面这些函数,都会返回一个CGRect 矩形范围

?


1

2

3

4

5

6

7

8

- (CGRect)backgroundRectForBounds:(CGRect)bounds;

//返回背景大小

- (CGRect)contentRectForBounds:(CGRect)bounds;

//返回视图大小,包括标题和图片

- (CGRect)titleRectForContentRect:(CGRect)contentRect;

//返回标题大小

- (CGRect)imageRectForContentRect:(CGRect)contentRect;

//返回图片大小

关于触发事件,button是继承于UIControl,这里不再叙述。

时间: 2024-11-08 22:14:21

IOS UIButton解读的相关文章

IOS UIButton使用详解

第一.UIButton的定义       UIButton *button=[[UIButton buttonWithType:(UIButtonType); 能够定义的button类型有以下6种,  typedef enum {  UIButtonTypeCustom = 0, 自定义风格  UIButtonTypeRoundedRect, 圆角矩形   UIButtonTypeDetailDisclosure, 蓝色小箭头按钮,主要做详细说明用  UIButtonTypeInfoLight,

iOS UIButton各类属性设置大全

   //设置自定义的按钮    //UIButton *button1=[UIButton buttonWithType:UIButtonTypeCustom];     //设置一个圆角的按钮     UIButton *button1=[UIButton buttonWithType:UIButtonTypeRoundedRect];          button1.frame=CGRectMake(80,250,250, 30);//按钮的位置坐标     [button1 setTi

iOS设置UIButton文字显示位置和字体大小、颜色的方法_IOS

前言 大家都知道UIButton按钮是IOS开发中最常用的控件,作为IOS基础学习教程知识 ,初学者需要了解其基本定义和常用设置,以便在开发在熟练运用. 一.iOS设置UIButton的字体大小 btn.frame = CGRectMake(x, y, width, height); [btn setTitle: @"search" forState: UIControlStateNormal]; //设置按钮上的自体的大小 //[btn setFont: [UIFont system

IOS 解决UIButton 点击卡顿/延迟的问题_IOS

前言 一开始还以为代码写的有问题,点击事件里面有比较耗时卡主线程的代码,逐一删减代码发现并不是这么回事. 正文 和参考文章里说的情况不完全相同,UIButton 并没有放在 UIScrollView 或 UITableView 上,但是 ViewController 是支持滑动返回的. ------------------华丽的分割线,搜索猜测解题中------------------ 解决办法:也没什么好办法,换成 ImageView 加 UITapGestureRecognizer 吧,另外

objective-c-ios uibutton按钮点击变色

问题描述 ios uibutton按钮点击变色 不是换图片设置高亮那种 就是普通的一个按钮点击变色 有没有什么自带的方法 还是要去自定义 求解答 最好能给出代码 解决方案 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; button.frame = CGRectMake(200, 200, 100, 40); button.backgroundColor = [UIColor redColor]; [button

【Xamarin挖墙脚系列:使用Xamarin进行Hybrid应用开发】

原文:[Xamarin挖墙脚系列:使用Xamarin进行Hybrid应用开发] 官方地址:https://developer.xamarin.com/guides/cross-platform/advanced/razor_html_templates/ 使用Xamarin进行网页形式的本地APP开发,感觉有点不爽,不过为前端开发人员提供了开发APP的入口. 呈现引擎支持HTML  和ASP.NET MVC3的Razor引擎! Razor引擎是个好同志! 不过,创建Hybrid应用的框架不仅仅是

Core Animation基础

前言 本次分享将从以下方面进行展开: 曾被面试官问倒过的问题:层与视图的关系 CALayer类介绍及层与视图的关系 CAShapeLayer类介绍 UIBezierPath贝塞尔曲线讲解 CoreAnimation之动画子类介绍 CATransitionAnimation类实现各种过滤动画 关于Core Animation在iOS系统中的关系图如下: 可以看出,Core Animation是相对上层的封装,介于UIKit与Core Graphics.OpenGL/OpenGL ES之间.最底下还

iOS热更新解读(三)—— JSPatch 之于 Swift

继承自 NSObject 的 Swift 类 修改属性 新建 Swift 工程 SwiftJSPatch.AppDelegate.swift: // in AppDelegate.swift ---------------- func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { let path = NS

IOS基础学习UIButton使用详解

  UIButton按钮是IOS开发中最常用的控件,作为IOS基础学习教程知识 ,初学者需要了解其基本定义和常用设置,以便在开发在熟练运用. 第一.UIButton的定义 UIButton *button=[[UIButton buttonWithType:(UIButtonType); 能够定义的button类型有以下6种, typedef enum { UIButtonTypeCustom = 0, 自定义风格 UIButtonTypeRoundedRect, 圆角矩形 UIButtonTy