// // 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