设计多选一按钮ChooseOnlyButton

效果:

源码:

ChooseOnlyButton.h 与 ChooseOnlyButton.m

//
// ChooseOnlyButton.h
// ChooseOnlyButton
//
// Created by YouXianMing on 14/11/4.
// Copyright (c) 2014年 YouXianMing. All rights reserved.
// #import <UIKit/UIKit.h>
@class ChooseOnlyButton; @protocol ChooseOnlyButtonDelegate <NSObject>
@optional
- (void)chooseButtonTitle:(NSString *)title;
@end @interface ChooseOnlyButton : UIView /**
* 代理
*/
@property (nonatomic, assign) id<ChooseOnlyButtonDelegate> delegate; /**
* 选取的按钮的标题(只读)
*/
@property (nonatomic, strong, readonly) NSString *selectedTitle; /**
* 标题的数组
*/
@property (nonatomic, strong) NSArray *titles; /**
* 按钮离左侧的距离
*/
@property (nonatomic, assign) CGFloat gapFromLeft; /**
* 两个按钮之间的水平距离
*/
@property (nonatomic, assign) CGFloat gapFromHorizontalButton; /**
* 两个按钮之间的垂直间距
*/
@property (nonatomic, assign) CGFloat gapFromVerticalButton; /**
* 按钮高度
*/
@property (nonatomic, assign) CGFloat buttonHeight; /**
* 按钮标题字体
*/
@property (nonatomic, strong) UIFont *buttonTitleFont; /**
* 没有选中状态下的按钮的背景颜色以及按钮字体的颜色
*/
@property (nonatomic, strong) UIColor *normalButtonBackgroundColor;
@property (nonatomic, strong) UIColor *normalButtonTitleColor; /**
* 选中状态下的按钮的背景颜色以及按钮字体的颜色
*/
@property (nonatomic, strong) UIColor *selectedButtonBackgroundColor;
@property (nonatomic, strong) UIColor *selectedButtonTitleColor; /**
* 重设view的尺寸并且创建出新的按钮
*/
- (void)resetSizeAndCreateButtons; /**
* 重新计算frame
*
* @return frame值
*/
- (CGRect)calculateFrame; @end
//
// ChooseOnlyButton.m
// ChooseOnlyButton
//
// Created by YouXianMing on 14/11/4.
// Copyright (c) 2014年 YouXianMing. All rights reserved.
// #import "ChooseOnlyButton.h" @implementation ChooseOnlyButton - (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) { }
return self;
} - (void)resetSizeAndCreateButtons { // 没有元素则退出
if (_titles.count == ) {
return;
} // 没有设置左边距则默认值为5.f
if (_gapFromLeft == ) {
_gapFromLeft = .f;
} // 没有设置水平按钮间距则默认值为5.f
if (_gapFromHorizontalButton == ) {
_gapFromHorizontalButton = .f;
} // 没有设置垂直按钮间距则默认值为5.f
if (_gapFromVerticalButton == ) {
_gapFromVerticalButton = .f;
} // 没有设置按钮高度则按钮默认高度为20.f
if (_buttonHeight == ) {
_buttonHeight = .f;
} // 获取frame宽度
CGFloat frameWidth = self.bounds.size.width; // 计算出按钮宽度
CGFloat buttonWidth = (frameWidth - _gapFromLeft* - _gapFromHorizontalButton)/.f; // 动态创建出按钮
for (int i = ; i < _titles.count; i++) {
UIButton *button = [[UIButton alloc] initWithFrame:\
CGRectMake(_gapFromLeft + (buttonWidth + _gapFromHorizontalButton)*(i%),
(i/)*(_buttonHeight + _gapFromVerticalButton),
buttonWidth,
_buttonHeight)]; // 设置按钮圆角
button.layer.cornerRadius = _buttonHeight/.f;
[button addTarget:self
action:@selector(buttonsEvent:)
forControlEvents:UIControlEventTouchUpInside]; // 设置按钮标题 + 默认的标题颜色
[button setTitle:_titles[i] forState:UIControlStateNormal];
[self normalButtonStyle:button]; // 设置字体
if (_buttonTitleFont) {
button.titleLabel.font = _buttonTitleFont;
} [self addSubview:button];
} // 重设自身view高度
CGFloat selfViewHeight = _buttonHeight*((_titles.count - )/ + ) + _gapFromVerticalButton*((_titles.count - )/);
CGRect rect = self.frame;
rect.size.height = selfViewHeight;
self.frame = rect;
} - (CGRect)calculateFrame { // 没有元素则退出
if (_titles.count == ) {
return CGRectZero;
} // 没有设置左边距则默认值为5.f
if (_gapFromLeft == ) {
_gapFromLeft = .f;
} // 没有设置水平按钮间距则默认值为5.f
if (_gapFromHorizontalButton == ) {
_gapFromHorizontalButton = .f;
} // 没有设置垂直按钮间距则默认值为5.f
if (_gapFromVerticalButton == ) {
_gapFromVerticalButton = .f;
} // 没有设置按钮高度则按钮默认高度为20.f
if (_buttonHeight == ) {
_buttonHeight = .f;
} // 根据控件的一些参数计算出高度
CGFloat selfViewHeight = _buttonHeight*((_titles.count - )/ + ) + _gapFromVerticalButton*((_titles.count - )/);
CGRect rect = self.frame;
rect.size.height = selfViewHeight; // 返回控件
return rect;
} - (void)buttonsEvent:(UIButton *)button { [[self subviews] enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
if ([obj isKindOfClass:[UIButton class]]) {
if ([button isEqual:obj]) {
// 选中按钮的样式
[self selectButtonStyle:obj]; UIButton *button = (UIButton *)obj; // 获取到选取的按钮标题
_selectedTitle = button.titleLabel.text; // 代理
if (_delegate && [_delegate respondsToSelector:@selector(chooseButtonTitle:)]) { [_delegate chooseButtonTitle:button.titleLabel.text];
}
} else {
[self normalButtonStyle:obj];
}
}
}];
} #pragma mark - 私有方法
/**
* 普通按钮的样式
*
* @param button 要改变样式的按钮
*/
- (void)normalButtonStyle:(UIButton *)button { if (_normalButtonTitleColor) {
[button setTitleColor:_normalButtonTitleColor
forState:UIControlStateNormal];
} else {
[button setTitleColor:[UIColor colorWithRed:0.000 green:0.361 blue:0.671 alpha:]
forState:UIControlStateNormal];
} if (_normalButtonBackgroundColor) {
button.backgroundColor = _normalButtonBackgroundColor;
} else {
button.backgroundColor = [UIColor clearColor];
} button.layer.borderColor = [UIColor colorWithRed:0.843 green:0.843 blue:0.843 alpha:].CGColor;
button.layer.borderWidth = .f;
} /**
* 选中按钮时的样式
*
* @param button 要改变样式的按钮
*/
- (void)selectButtonStyle:(UIButton *)button { if (_selectedButtonTitleColor) {
[button setTitleColor:_selectedButtonTitleColor
forState:UIControlStateNormal];
} else {
[button setTitleColor:[UIColor colorWithRed:0.973 green:0.984 blue:0.988 alpha:]
forState:UIControlStateNormal];
} if (_selectedButtonBackgroundColor) {
button.backgroundColor = _selectedButtonBackgroundColor;
} else {
button.backgroundColor = [UIColor colorWithRed:0.055 green:0.365 blue:0.663 alpha:];
} button.layer.borderColor = [UIColor colorWithRed:0.055 green:0.365 blue:0.663 alpha:].CGColor;
button.layer.borderWidth = .f;
} @end

使用时候的源码:

//
// ViewController.m
// ChooseOnlyButton
//
// Created by YouXianMing on 14/11/4.
// Copyright (c) 2014年 YouXianMing. All rights reserved.
// #import "ViewController.h"
#import "ChooseOnlyButton.h" @interface ViewController ()<ChooseOnlyButtonDelegate> {
ChooseOnlyButton *button;
} @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad]; UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(, , , )];
label.textAlignment = NSTextAlignmentCenter;
label.text = @"学挖掘机哪家强?";
label.textColor = [UIColor grayColor];
[self.view addSubview:label]; button = [[ChooseOnlyButton alloc] initWithFrame:CGRectMake(, , , )];
button.buttonHeight = .f;
button.gapFromLeft = .f;
button.gapFromVerticalButton = .f;
button.gapFromHorizontalButton = .f;
button.buttonTitleFont = [UIFont systemFontOfSize:.f];
button.titles = @[@"A. 蓝翔",
@"B. blueShit",
@"C. YouXianMing",
@"D. 不知道"];
button.delegate = self; [self.view addSubview:button]; // 设置完所有参数后创建出控件
[button resetSizeAndCreateButtons];
} #pragma mark - 代理
- (void)chooseButtonTitle:(NSString *)title {
NSLog(@"%@", title);
NSLog(@"%@", button.selectedTitle);
} @end

以下是需要注意的地方:

超高的可定制性

设计多选一按钮ChooseOnlyButton的更多相关文章

  1. 设计可以多选的按钮ChooseManyButton

    设计可以多选的按钮ChooseManyButton 效果: 源码: ChooseManyButton.h 与 ChooseManyButton.m // // ChooseManyButton.h / ...

  2. 设计多选按钮ListChooseView

    设计多选按钮ListChooseView 答应某位女屌丝而写的控件,效果还不错,开源给大家^_^! 效果图: 源码: // // ListChooseView.h // ScrollChooseBut ...

  3. js动态获取子复选项并设计全选及提交

    在做项目的时候,会遇到根据父选项,动态的获取子选项,并列出多个复选框,提交时,把选中的合并成一个字符提交后台 本章将讲述如何通过js控制实现该操作: 1:设计父类别为radio,为每一个radio都加 ...

  4. 定制二选一按钮SwitchButton

    定制二选一按钮SwitchButton 效果: 源码: SwitchButton.h 与 SwitchButton.m // // SwitchButton.h // KongJian // // C ...

  5. .NET开源工作流RoadFlow-表单设计-复选按钮组

    复选按钮组的设置与单选按钮组的设置相同,只是表现形式为:<input type="checkbox"/>

  6. cocos2dx 3.x (单选,多选,复选checkBox按钮的实现) RadioButton

    // //  LandLordsMakeNewRoom.hpp //  MalaGame39 // //  Created by work on 2016/12/19. // //   #ifndef ...

  7. xmlplus 组件设计系列之二 - 按钮

    除了图标以外,按钮也许是最简单的组件了,现在来看看如何定义按钮组件. 使用原生按钮组件 在 xmlplus 中,HTML 元素也以组件的方式存在.所以,你可以直接通过使用 button 标签或者 in ...

  8. 聊聊Zookeeper应用场景、架构设计、选主机制

    Zookeeper作为一个分布式协调系统提供了一项基本服务:分布式锁服务,分布式锁是分布式协调技术实现的核心内容.像配置管理.任务分发.组服务.分布式消息队列.分布式通知/协调等,这些应用实际上都是基 ...

  9. UI设计, 弹出对话框 设计(区分强调按钮和普通按钮,给用户一个 正向建议的强调按钮)

    在UI设计时,经常会需要 设计 弹出对话框,以下是个样式设计: 0.标准对话框 说明 Title space : 标题区 contents space : 内容区 function space: 功能 ...

随机推荐

  1. Java数据库连接池原理与简易实现

    1.什么是数据库连接池 我们现在在开发中一定都会用到数据库,为了提高我们的系统的访问速度,数据库优化是一个有效的途径.我们现在开发中使用数据库一般都要经历以下的四个步骤:(1)加载数据库的驱动类,(2 ...

  2. C# using用法

    一.using指令 使用using指令在文件顶部引入命名空间,如 using System; using System.IO; 二.using别名 用using为命名空间或类型定义别名,当引入的多个命 ...

  3. babel使用入门以及使用webpack+babel来"编译"你的JS代码

    Babel是一个广泛使用的转码器,可以将ES6代码转为ES5,从而在现有的环境中执行. 这是一个开端,以后遇到问题,也会持续记录. 一.babel配置 官网有更详细的配置教程:https://www. ...

  4. BG.Sqoop

    1. 下载 Sqoop,并复制到虚拟机 http://sqoop.apache.org/ 2. 安装Sqoop tar zxf sqoop-1.4.6.bin__hadoop-2.0.4-alpha. ...

  5. Bootstrap中的datetimepicker插件用法总结(转载)

    datetimepicker用法总结   目录 datetimepicker用法总结 目录 简述 官方文档 选项属性 1 format 格式 2 weekStart 一周从哪一天开始 3 startD ...

  6. IDEA 现有项目连接SVN

    前言:有时会先搭建好系统,准备好所有配置文件及公共类,然后才会从IDEA中将代码放到SVN中,这里正好讲述了如何从现有代码连接到SVN. 首先将该项目启动SVN管理 然后关联对应SVN地址 右键项目名 ...

  7. 用Jquery去写树结构

    <!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <title>Tr ...

  8. PHP通过api上传图片

    参考:接口实现图片上传 提交端: $url="localhost:805/rdyc/123.jpg"; $img=file_get_contents($url); $img_api ...

  9. JSP 插入到数据库的数据出现 “SQLServerException: 将截断字符串或二进制数据” 错误解决方案

    最近在编写一个小型基于的jsp系统开发.掌握数据库一直感觉还不错.但是今天就出现了一个问题困扰我大半天.后来本来准备睡觉,但是觉得今天不解决这个问题恐怕晚上是“彻夜难眠啊”!!于是打开电脑,又开始捣腾 ...

  10. Android 蓝牙开发之搜索、配对、连接、通信大全

            蓝牙( Bluetooth®):是一种无线技术标准,可实现固定设备.移动设备和楼宇个人域网之间的短距离数据 交换(使用2.4-2.485GHz的ISM波段的UHF无线电波).蓝牙设备最 ...