|
//
// TPSelectButton.h
// ThePaperHD
//
// Created by scar1900 on 15/2/12.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface TPSelectButton : UIView
@property(nonatomic, strong)UILabel *textLabel;
@property(nonatomic, strong)UIButton *button;
@property(nonatomic, strong)NSString *titleText;
@property(nonatomic, assign)CGFloat topPadding;
@property(nonatomic, assign)CGSize imgSize;
@property(nonatomic, copy) NSString *isTopic;
@property(nonatomic, assign)BOOL isPrasie;
- (void)setSelect:(BOOL)select animation:(BOOL)animation;
- (void)setSelected:(BOOL)selected animated:(BOOL)animated;
- (id)initWithFrame:(CGRect)frame
target:(id)target
selector:(SEL)selector;
- (void)setBUttonNormalImage:(UIImage*)normalImage
highLightImage:(UIImage*)highLightImage
selectedImage:(UIImage*)selectedImage;
@end
|