123456789101112131415161718192021222324 |
- /*
- 使用
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view, typically from a nib.
-
- CQTextView *textView = [[CQTextView alloc]initWithFrame:CGRectMake(90, 90, 100, 30)];
- [self.view addSubview:textView];
- textView.backgroundColor = [UIColor redColor];
- textView.font = [UIFont systemFontOfSize:20];
- textView.placeholder = @"ss";
- }
- */
- #import <UIKit/UIKit.h>
- @interface CQTextView : UIView
- @property (nonatomic,copy) NSString *placeholder;
- @property (nonatomic,strong) UIFont *font;
- @property (nonatomic,strong) UITextView *textView;
- @end
|