//
// IBTCustomButtom.h
// XFFruit
//
// Created by Xummer on 4/13/15.
// Copyright (c) 2015 Xummer. All rights reserved.
//
#import "IBTUIButton.h"
@interface IBTCustomButtom : IBTUIButton
+ (IBTUIView *)buttonViewWithTitle:(NSString *)title
color:(UIColor *)color
topGap:(CGFloat)fTopGap
containerWidth:(CGFloat)fWidth
pointer:(UIButton * __autoreleasing *)buttonPointer
target:(id)target
action:(SEL)selector;
+ (UIButton *)buttonWithTitle:(NSString *)title
color:(UIColor *)color
target:(id)target
action:(SEL)selector;
+ (UIButton *)creatButtonWithFrame:(CGRect)frame target:(id)target sel:(SEL)sel tag:(NSInteger)tag image:(NSString *)name title:(NSString *)title titleColor:(UIColor *)titleCorlor isCorner:(BOOL)isCornor corner:(CGFloat)corner bgColor:(UIColor *)bgcolor;
@end
-
陈俊俊 authored7281af31