Swift基础之两种选择星星的评价样式并获取星星的索引值
想练练手,所以封装了一个两种选择星星的评价样式的Demo,并且可以获取到点击的星星的索引值,方便记录值,上传数据时使用
首先创建View类,设计初始化方法,并且用到了枚举类型和代理方法
方式一:默认的有文字的5颗星评价的样式
case .TextType://有文字样式
//计算每个星星的大小宽、高
let itemWidthF:CGFloat = viewWidthF / 5.0
let itemHeightF:CGFloat = viewHeightF / 2.0
//将小的值赋值给星星
let starWidth:CGFloat = 30.0;
let textArr:NSArray = ["很差","凑合","一般","不错","完美"]
//创建按钮和星星
for i in 0...4 {
let starImgV = UIImageView.init(frame: CGRect.init(x: (itemWidthF-starWidth)/2+itemWidthF*CGFloat(i), y: (itemHeightF-starWidth)/2, width: starWidth, height: starWidth))
starImgV.tag = i+100
starImgV.image = UIImage.init(named: "StarUnSelect")
self.addSubview(starImgV)
let butt = UIButton.init(frame: CGRect.init(x: itemWidthF*CGFloat(i), y: 0, width: itemWidthF, height: itemHeightF));
butt.tag = i+200
butt.addTarget(self, action: #selector(buttClick), for: UIControlEvents.touchUpInside)
self.addSubview(butt)
let textLabel = UILabel.init(frame: CGRect.init(x: itemWidthF*CGFloat(i), y: itemHeightF, width: itemWidthF, height: itemHeightF))
textLabel.text = textArr[i] as? String
textLabel.adjustsFontSizeToFitWidth = true
textLabel.textColor = UIColor.lightGray
textLabel.font = UIFont.systemFont(ofSize: 13)
textLabel.textAlignment = NSTextAlignment.center;
self.addSubview(textLabel)
}
break
方式二:没有文字描述的评价程度,同时要注意视图的宽高大小问题
case .NoTextType:
//无文字样式
//计算每个星星的大小宽、高
let itemWidthF:CGFloat = viewWidthF / CGFloat(aNum)
let itemHeightF:CGFloat = viewHeightF
//设置星星的大小
var starWidth:CGFloat = 0.0
if itemWidthF>30 {
//如果大于,保持大小为30
starWidth = 30
//创建按钮和星星
for i in 0...aNum-1 {
let starImgV = UIImageView.init(frame: CGRect.init(x: (itemWidthF-starWidth)/2+itemWidthF*CGFloat(i), y: (itemHeightF-starWidth)/2, width: starWidth, height: starWidth))
starImgV.tag = i+100
starImgV.image = UIImage.init(named: "StarUnSelect")
self.addSubview(starImgV)
let butt = UIButton.init(frame: CGRect.init(x: itemWidthF*CGFloat(i), y: 0, width: itemWidthF, height: itemHeightF));
butt.tag = i+200
butt.addTarget(self, action: #selector(buttClick), for: UIControlEvents.touchUpInside)
self.addSubview(butt)
}
}else{
//如果小于,判断宽、高的大小,将小的值赋值给星星
//三目运算
//starWidth = itemWidthF<itemHeightF ? itemWidthF:itemHeightF
if itemWidthF<=itemHeightF {
//如果宽小于高
starWidth = itemWidthF
//创建按钮和星星
for i in 0...aNum-1 {
let starImgV = UIImageView.init(frame: CGRect.init(x: starWidth*CGFloat(i), y: (itemHeightF-starWidth)/2, width: starWidth, height: starWidth))
starImgV.tag = i+100
starImgV.image = UIImage.init(named: "StarUnSelect")
self.addSubview(starImgV)
let butt = UIButton.init(frame: CGRect.init(x: starWidth*CGFloat(i), y: 0, width: starWidth, height: itemHeightF));
butt.tag = i+200
butt.addTarget(self, action: #selector(buttClick), for: UIControlEvents.touchUpInside)
self.addSubview(butt)
}
}else{
//如果宽大于高
starWidth = itemHeightF
//创建按钮和星星
for i in 0...aNum-1 {
let starImgV = UIImageView.init(frame: CGRect.init(x: (itemWidthF-starWidth)/2+itemWidthF*CGFloat(i), y: 0, width: starWidth, height: starWidth))
starImgV.tag = i+100
starImgV.image = UIImage.init(named: "StarUnSelect")
self.addSubview(starImgV)
let butt = UIButton.init(frame: CGRect.init(x: itemWidthF*CGFloat(i), y: 0, width: itemWidthF, height: itemHeightF));
butt.tag = i+200
butt.addTarget(self, action: #selector(buttClick), for: UIControlEvents.touchUpInside)
self.addSubview(butt)
}
}
}
break
设计代理方法,并实现
//定义协议,知道点击的哪一个
protocol BHClickMarkStarDelegate:NSObjectProtocol{
//定义一个可以记录显示的哪颗星星的方法
func clickWhichStar(bhMarkView:BHMarkStarView,indexNum:Int)
}
//实现协议方法
func clickWhichStar(bhMarkView: BHMarkStarView, indexNum: Int) {
switch bhMarkView.tag {
case 1:
print("输出的是第。。。一。。。个视图的第...\(indexNum+1)...个星星")
break
case 2:
print("输出的是第。。。二。。。个视图的第...\(indexNum+1)...个星星")
break
case 3:
print("输出的是第。。。三。。。个视图的第...\(indexNum+1)...个星星")
break
case 10:
print("输出的是第。。。四。。。个视图的第...\(indexNum+1)...个星星")
break
case 11:
print("输出的是第。。。五。。。个视图的第...\(indexNum+1)...个星星")
break
case 12:
print("输出的是第。。。六。。。个视图的第...\(indexNum+1)...个星星")
break
default:
break
}
}
效果图:(源码下载:https://github.com/hbblzjy/SwiftMarkStartDemo)
Swift基础之两种选择星星的评价样式并获取星星的索引值的更多相关文章
- 【Swfit】Swift与OC两种语法写单例的区别
Swift与OC两种语法写单例的区别 例如写一个NetworkTools的单例 (1)OC写单例 + (instancetype)sharedNetworkTools { static id inst ...
- 运算符关键字。数据区别大小写。日期范围。判空的两种写法。NOT IN的两种写法。IN范围可含NULL,但NOT IN值范围不能含NULL。
比较:>,<,=,>=,<=,<>(!=) 逻辑:AND,OR,NOT 范围:BETWEEN...AND... 范围:IN,NOT IN 判空:IS NULL, I ...
- JAVA基础之两种核心机制
突然之间需要学习Java,学校里学的东西早就忘记了,得用最短的时间把Java知识理顺,重点还是J2EE,毕竟所有的ava项目中95%都是J2EE,还是先从基础的J2SE学起吧....... 首先是了解 ...
- Thead基础及两种创建方式
今天本人给大家讲解一下多线程,如有不对的或者讲的不好的可以多多提出,我会进行相应的更改,先提前感谢提出意见的各位了!!! 说说多线程本人自己对它理解的定义:因计算机的CPU支持能够在同一时间执行多于一 ...
- iOS 获取版本号(Swift和OC两种)
iOS获取应用版本号:version OC: [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVers ...
- Swift基础之两指拉动图片变大变小
我们在使用APP的时候,有时会发现有些图片可以通过两指进行放大.缩小,今天就实现这样的一种效果,比较简单,不喜勿喷.... var imageVi:UIImageView! = nil var ...
- javascript基础之两种函数的定义方法
第一种方式:可以在函数定义之前调用也可以在函数定义之后调用: (0)函数的调用 add(,) //可以调用 (1)函数的定义: function add(x,y) { console.log(x+y) ...
- git代码回滚的两种选择
回滚到指定commit,且保持该commit之前和之后的提交记录 使用git revert命令. git revert HEAD // 回滚到前一次 commit git revert HEAD^ / ...
- [Swift]二分法的两种方式
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★➤微信公众号:山青咏芝(shanqingyongzhi)➤博客园地址:山青咏芝(https://www.cnblogs. ...
随机推荐
- js数据结构之栈、队列(数据结构与拉火车游戏)
1.js实现队列的数据结构(先进先出) function Queue (array) { if(Object.prototype.toString.call(array)!="[object ...
- java中的方法引用
引用静态方法:类名称::static 方法名称: 引用某个对象的方法:对象::普通方法: 引用特定类方法:特定类::方法 引用构造方法:类名称::new 范例:引用静态方法 package com.j ...
- [LeetCode] K Empty Slots K个空槽
There is a garden with N slots. In each slot, there is a flower. The N flowers will bloom one by one ...
- [LeetCode] Reverse String II 翻转字符串之二
Given a string and an integer k, you need to reverse the first k characters for every 2k characters ...
- spring源码阅读(2)核心类介绍
(1).BeanFactory作为一个主接口不继承任何接口,暂且称为一级接口. (2).有3个子接口继承了它,进行功能上的增强.这3个子接口称为二级接口. (3).ConfigurableBeanFa ...
- Junit简单配置
Junit简单配置的步骤如下: 1.在WEB-INF目录下的lib里面放一个junit包,我用的是junit-4.9.jar: 2.选定要测试的类,右键单击该类,新建一个Junit Test Case ...
- Centos常用命令之:正则表达式
我们知道,正则表达式可以大大的提高我们的工作效率. 在了解正则表达式之前,我们需要了解,通配符的概念. 在linux中,我们在使用ls这个命令的时候经常会使用下面这种用法 [fuwh@localhos ...
- [IOI 2011]Race
Description 给一棵树,每条边有非负权.求一条简单路径,权值和等于K,且边的数量最小.N <= 200000, 1 <= K <= 1000000 Input 第一行 两个 ...
- MFC程序设计小结
由于毕业设计要用到MFC,因此本人这段时间开始学习MFC编程,边学边做,现将一些重要的知识点总结如下: 创建一个MFC程序,操作步骤很简单,要点就是选择MFC AppWizard(exe).单文档或者 ...
- Java8的重要新特性
一.Lambda表达式 java8中Lambda表达式的书写方式: (参数) -> 表达式 (参数) -> 单行语句 (参数) -> { 语句 } 1.Lambda遍历List和Ma ...