/* 使用 - (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 @interface CQTextView : UIView @property (nonatomic,copy) NSString *placeholder; @property (nonatomic,strong) UIFont *font; @property (nonatomic,strong) UITextView *textView; @end