GXFButtonAndLineView.h 927 Bytes
Newer Older
freecui's avatar
freecui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
//
//  GXFButtonAndLineView.h
//  XFFruit
//
//  Created by freecui on 15/9/4.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface GXFButtonAndLineView : UIView

@property (nonatomic, strong) UIButton *f_btn;
@property (nonatomic, strong) UIView *f_line;

- (instancetype)initViewLineAndButtonWithFrame: (CGRect)frame
                                     isSeleted: (BOOL)isSelected
                                   buttonTitle: (NSString *)title
                                   selectColor: (UIColor *)color;
- (instancetype)initViewLineAndButtonWithFrame: (CGRect)frame
                             isSeleted: (BOOL)isSelected
                           buttonTitle: (NSString *)title
                           selectColor: (UIColor *)color
                                action:(SEL)action
                              forControlEvents:(UIControlEvents)controlEvents;
@end