CLButton.h 503 B

12345678910111213141516171819202122232425
  1. //
  2. // CLButton.h
  3. // jiaPei
  4. //
  5. // Created by apple on 15/11/3.
  6. // Copyright (c) 2015年 JCZ. All rights reserved.
  7. //选项ABCD的 view
  8. #import <UIKit/UIKit.h>
  9. @interface CLButton : UIButton
  10. @property(nonatomic,copy)NSString* titleN;
  11. @property(nonatomic,copy)NSString* imgN;
  12. //给小按钮用的。其实是leftVC里面的4个小按钮
  13. @property(assign)int style;
  14. /**给listVC用的
  15. */
  16. @property(nonatomic,copy)NSString* detailN;
  17. //-(void)setTitle:(NSString*)title Detail:(NSString*)str;
  18. @end