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