CQTextView.h 617 B

123456789101112131415161718192021222324
  1. /*
  2. 使用
  3. - (void)viewDidLoad {
  4. [super viewDidLoad];
  5. // Do any additional setup after loading the view, typically from a nib.
  6. CQTextView *textView = [[CQTextView alloc]initWithFrame:CGRectMake(90, 90, 100, 30)];
  7. [self.view addSubview:textView];
  8. textView.backgroundColor = [UIColor redColor];
  9. textView.font = [UIFont systemFontOfSize:20];
  10. textView.placeholder = @"ss";
  11. }
  12. */
  13. #import <UIKit/UIKit.h>
  14. @interface CQTextView : UIView
  15. @property (nonatomic,copy) NSString *placeholder;
  16. @property (nonatomic,strong) UIFont *font;
  17. @property (nonatomic,strong) UITextView *textView;
  18. @end