免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1881 | 回复: 2
打印 上一主题 下一主题

[iOS] iOS 自定义UIButton [复制链接]

论坛徽章:
1
数据库技术版块每日发帖之星
日期:2015-06-05 22:20:00
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-06-04 14:19 |只看该作者 |倒序浏览
工作中有一个点击button更新button上文案的需求,用自定义了button可以很简单的实现的这个需求

首先写个自定义的button

CustomButton.h
  1. #import <UIKit/UIKit.h>

  2. typedef NS_ENUM(NSUInteger, CustomButtonStatus){
  3.     CustomButtonStatusNormal = 0,
  4.     CustomButtonStatusReverse = 1
  5. };

  6. @interface CustomButton : UIButton

  7. @property(nonatomic) CustomButtonStatus buttonStatus;

  8. @end
复制代码
CustomButton.m
  1. #import "CustomButton.h"

  2. @implementation CustomButton

  3. - (void)setButtonStatus:(CustomButtonStatus)buttonStatus{
  4.     NSString *title;
  5.     if (CustomButtonStatusNormal == buttonStatus) {
  6.         title = @"啊啊啊";
  7.     } else if(CustomButtonStatusReverse == buttonStatus){
  8.         title = @"哦哦哦";
  9.     }
  10.     [self setTitle:title forState:UIControlStateNormal];
  11.     _buttonStatus = buttonStatus;

  12. }
  13. @end
复制代码
调用
  1. #import "ViewControllerTest.h"
  2. #import "CustomButton.h"

  3. @interface ViewControllerTest () {
  4.     CustomButton *button;
  5. }

  6. @end

  7. @implementation ViewControllerTest

  8. - (void)viewDidLoad {
  9.     [super viewDidLoad];
  10.    
  11.     self.view.backgroundColor = [UIColor whiteColor];
  12.    
  13.     button = [CustomButton buttonWithType:UIButtonTypeCustom];
  14.     [button setButtonStatus:CustomButtonStatusNormal];
  15.     [button setFrame:CGRectMake(200, 80, 86, 42)];
  16.     [button addTarget:self action:@selector(customButtonClick:) forControlEvents:UIControlEventTouchUpInside];
  17.     [button setBackgroundColor:[UIColor redColor]];
  18.     [self.view addSubview:button];

  19. }

  20. -(void) customButtonClick: sender{
  21.     button.buttonStatus = !button.buttonStatus;
  22. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2015-06-10 12:33 |只看该作者

看一下!

论坛徽章:
1
操作系统版块每日发帖之星
日期:2015-06-13 22:20:00
3 [报告]
发表于 2015-06-12 18:24 |只看该作者
兄弟,这还要贴出来啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP