博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自定义UIButton--iPhone按钮控件点击效果写法
阅读量:5843 次
发布时间:2019-06-18

本文共 2070 字,大约阅读时间需要 6 分钟。

当我们自定义了一个UIButton时,如果采用重绘的方式,将drawRect事件重写了,原有自带的点击的效果就没有了,这时,我们也要自己来重新写的。 例如下面效果的按钮 @implementation WeiboButton @synthesize iconFile,title; - (id) initWithFrame:(CGRect)frame { if ((self = [super initWithFrame:frame])) { [self addObserver:self forKeyPath:@"highlighted" options:0 context:nil]; //增加对highlighted属性的观察 } return self; } -(void)dealloc { [self removeObserver:self forKeyPath:@"highlighted"];//移除对highlighted属性的观察 [super dealloc]; } -(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { if ([keyPath isEqualToString:@"highlighted"]) { [self setNeedsDisplay];//当按钮被按下时,重绘按钮 } } -(void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); CGRect buttonRect=self.bounds; //画背景 CGContextSetFillColorWithColor(context, [[UIColor whiteColor] CGColor]); CGContextFillRect(context, buttonRect); //画边框 CGContextSetLineWidth(context, 1.0); CGContextSetStrokeColorWithColor(context,[[UIColor lightGrayColor] CGColor]); CGContextStrokeRect(context, buttonRect); //画图标 if (_iconFile !=nil && ![_iconFile isEqualToString:@""]) { UIImage * iconImage=[UIImage imageNamed:_iconFile]; [iconImage drawInRect:CGRectMake(10, 10, 20, 20) ]; } //画文字 if (_title !=nil && ![_title isEqualToString:@""]) { //设置画笔线条粗细 CGContextSetLineWidth(context, 1.0); CGContextSetFillColorWithColor(context, [Setting_Cell_Text_Color_Common CGColor]); //设置字体 UIFont *font = [UIFont systemFontOfSize:15]; //在指定的矩形区域内画文字 CGRect textRect=CGRectMake(40, 10, self.bounds.size.width-40, 20); [_title drawInRect:textRect withFont:font lineBreakMode:UILineBreakModeWordWrap alignment:UITextAlignmentLeft]; } if ([self isHighlighted]) {//判断按钮是否被按下 [[UIColor lightGrayColor] set]; UIRectFillUsingBlendMode(rect, kCGBlendModeMultiply); } [super drawRect:rect]; } -(void)setIconFile:(NSString *)newIconFile { _iconFile=newIconFile; [self setNeedsDisplay]; } -(void)setTitle:(NSString *)newTitle { _title=newTitle; [self setNeedsDisplay]; } @end

转载于:https://www.cnblogs.com/liuxingzi/archive/2012/12/27/3404303.html

你可能感兴趣的文章
SVN报Previous operation has not finished; run 'cleanup'&
查看>>
关于博客园备份
查看>>
iOS多线程与网络开发之多线程概述
查看>>
servlet详细理解
查看>>
Makefile经典教程(掌握这些足够)
查看>>
在Windows下搭建RocketMQ
查看>>
解决linux下访问https站点问题
查看>>
Codeforces 455B A Lot of Games 字典树上博弈
查看>>
mybatis-spring 集成
查看>>
并发运算lib
查看>>
UFLDL教程笔记及练习答案五(自编码线性解码器与处理大型图像**卷积与池化)...
查看>>
(转)编码剖析Spring管理Bean的原理
查看>>
View的setLayerType() , setDrawingCacheEnabled() 方法用法
查看>>
R语言colorRampPalette函数-创建颜色梯度(渐变色)
查看>>
HDU TIANKENG’s rice shop(模拟)
查看>>
logback 实例
查看>>
Java多线程之可见性与原子性——synchronized VS volatile
查看>>
What is a TensorFlow Session?
查看>>
iOS的UILabel设置居上对齐,居中对齐,居下对齐
查看>>
深搜1--城堡问题
查看>>