iOS-UIButton简单的使用介绍

1.最简单的一个创建方式

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

2.常用创建方式,在创建button的同时设置type

UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeCustom];

3.设置button的文字

    在使用中需要注意title的默认颜色是无色的接下来需要设置下title的颜色

     参数一:文字

     参数二:Button的状态

     常用状态:

     默认(UIControlStateNormal)

     高亮(UIControlStateHighlighted)

     禁用(UIControlStateDisabled)   

 [btn setTitle:@"巴拉巴拉巴拉" forState:UIControlStateDisabled];

4.设置button title的字体颜色

     参数一: UIColor 需要传入一个UIColor (字体的颜色)

     参数二:button的状态

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

5. 设置button的背景图片

     参数一:需要传入一个UIImage (显示的背景图片)

     参数二:button的状态

[btn setBackgroundImage:[UIImage imageNamed:@"图片名"] forState:UIControlStateHighlighted];

   6.设置Button的图片

    需要注意 直接设置Image而不是BackgroundImage时会覆盖title也就是按钮的文字,图层问题导致了这个问题    

   不会画图直接用文字解释一下     

   从最底层到最上层解释button的图层(个人理解如有错误欢迎指出)

     view(也可以说是UiButton)

     BackgroundImage(背景图)

     title(文字)

     Image(图片)

     参数一:需要传入一个UIImage (显示的图片) 做个补充 放入到Assets.xcassets中的图片b如果是jpg和jng格式不需要写后缀名

     参数二:button的状态

  [btn setImage:[UIImage imageNamed:@"图片名"] forState:UIControlStateNormal];

 

     7.按钮的响应方法

     参数一: 个人理解意思谁去调用响应方法

     参数二: 调用哪个方法

     参数三: 什么方式去响应这个方法 (一般使用UIControlEventTouchUpInside)

 

[btn addTarget:self action:@selector(Myaction) forControlEvents:UIControlEventTouchUpInside];

-(void) Myaction{}

PS:晚点补充Button尺寸、背景颜色、字体大小、字体阴影颜色(用的不多,可能不介绍) 只介绍基本情况下使用到的东西

你可能感兴趣的:(iOS开发)