|
//
// blueButton.h
// ThePaperDemo
//
// Created by scar1900 on 14/11/27.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface blueButton : UIButton
- (id)initWithFrame:(CGRect)frame withColor:(UIColor*)color;
@property(nonatomic, strong)UIImageView *shareImageView;
@property(nonatomic, strong)UILabel *textLabel;
@end
|