STButton.h 585 B

1234567891011121314151617181920212223
  1. /**这是你从网上学来的技巧,很强大。所以取名STrongButton
  2. */
  3. #import <UIKit/UIKit.h>
  4. /**切记字体不能太大,否则将无法正常显示!!!
  5. */
  6. @interface STButton : UIButton
  7. /**专门给选择题库用的。子标题
  8. */
  9. @property(nonatomic,copy)NSString* subTitle;
  10. /**用style来区分按钮的布局。
  11. 报名的按钮style为1.
  12. tabbar按钮的style为2
  13. */
  14. @property(assign)int style;
  15. //对上面subTitle的补充,主要是用于驾考社区的驾校按钮
  16. -(void)setSubTitle:(NSString *)subTitle Font:(CGFloat)ft color:(UIColor*)col;
  17. @end