网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 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
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/13 9:52:04