自定义 UIButotn

来源:互联网 发布:淘宝网手风琴 编辑:程序博客网 时间:2024/04/29 19:31

@interface myButton : UIButton

{

}

//+(id)myButton;

@end

 

@implementation myButton

-(void)awakeFromNib

{

    UIImage* image = [UIImageimageNamed:@"按钮-点击前.png"];

    image = [image stretchableImageWithLeftCapWidth:image.size.width/2.0ftopCapHeight:image.size.height/2.0f];

    [selfsetBackgroundImage:imageforState:UIControlStateNormal];

    image = [UIImage imageNamed:@"按钮-点击后.png"];

    image = [image stretchableImageWithLeftCapWidth:image.size.width/2.0ftopCapHeight:image.size.height/2.0f];    

    [selfsetBackgroundImage:imageforState:UIControlStateHighlighted];        

    [self.titleLabelsetFont:[UIFontsystemFontOfSize:12]];

    [selfsetTitleShadowColor:[UIColorwhiteColor]forState:UIControlStateNormal];

    [selfsetTitleShadowColor:[UIColorblackColor]forState:UIControlStateHighlighted];

    [selfsetTitleColor:c_btn_grayforState:UIControlStateNormal];

    [selfsetTitleColor:c_whiteforState:UIControlStateHighlighted];

}

 - (id)initWithFrame:(CGRect)frame

{

    self = [superinitWithFrame:frame];

    if (self) {

        UIImage* image = [UIImageimageNamed:@"按钮-点击前.png"];

        image = [image stretchableImageWithLeftCapWidth:image.size.width/2.0ftopCapHeight:image.size.height/2.0f];

        [selfsetBackgroundImage:imageforState:UIControlStateNormal];

        image = [UIImage imageNamed:@"按钮-点击后.png"];

        image = [image stretchableImageWithLeftCapWidth:image.size.width/2.0ftopCapHeight:image.size.height/2.0f];          

        [selfsetBackgroundImage:imageforState:UIControlStateHighlighted];        

        [self.titleLabelsetFont:[UIFontsystemFontOfSize:12]];

        [self.titleLabelsetShadowColor:[UIColor whiteColor]];        

        [selfsetTitleColor:c_btn_grayforState:UIControlStateNormal];

        [selfsetTitleColor:c_whiteforState:UIControlStateHighlighted]; 

        [selfsetTitleShadowColor:[UIColorwhiteColor]forState:UIControlStateNormal];

        [selfsetTitleShadowColor:[UIColorblackColor]forState:UIControlStateHighlighted];        

    }

    returnself;

}

@end

0 0