简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

ios 代码控制出现控件的阴影

来源:易贤网   阅读:909 次  日期:2015-01-06 10:04:26

温馨提示:易贤网小编为您整理了“ios 代码控制出现控件的阴影”,方便广大网友查阅!

只需要把对应的空间,进行重写。我开发的主要针对uibutton这个控件

.h文件,如下:

#import

#import

@interface shadowbutton : uibutton

{

uicolor *shadowcolor;

}

@property(nonatomic , strong)uicolor *shadowcolor;

@end

.m文件,如下

#import shadowbutton.h

@implementation shadowbutton

@synthesize shadowcolor;

-(void)setproperty

{

self.imageedgeinsets = uiedgeinsetsmake(0, -1, 3, 2);

self.shadowcolor = [uicolor graycolor];

}

- (id)initwithframe:(cgrect)frame

{

self = [super initwithframe:frame];

if (self) {

// initialization code

}

return self;

}

-(id)initwithcoder:(nscoder *)adecoder

{

self = [super initwithcoder:adecoder];

if (self) {

[self setproperty];

}

return self;

}

// only override drawrect: if you perform custom drawing.

// an empty implementation adversely affects performance during animation.

- (void)drawrect:(cgrect)rect

{

// drawing code

cgcontextref context = uigraphicsgetcurrentcontext();

cgrect frame = rect;

uiedgeinsets insets = self.imageedgeinsets;

frame.origin.x +=insets.left;

frame.origin.y +=insets.top;

frame.size.width -= (insets.left + insets.right);

frame.size.height -= (insets.top + insets.bottom);

if (shadowcolor) {

cgcontextsetshadowwithcolor(context, cgsizemake(insets.right, insets.bottom), 10, [shadowcolor cgcolor]);

}

uiimage *image = self.imageview.image;

[image drawinrect:frame];

}

@end

更多信息请查看IT技术专栏

更多信息请查看技术文章
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:用css截取字符的几种方法详解(css排版隐藏溢出文本)
下一篇:html标签中的this使用介绍
易贤网手机网站地址:ios 代码控制出现控件的阴影
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!