UITextFiled上方宽度解决

来源:互联网 发布:飞车k24数据 编辑:程序博客网 时间:2024/05/02 19:37

//上方空白解决
self.automaticallyAdjustsScrollViewInsets = NO;
textView = [[UIPlaceholderTextView alloc] init];
[textView setFrame:CGRectMake(20, 74, self.view.frame.size.width-40, 150)];
//textView.placeholder = @”请填写审批意见…”;
[textView setSelectedRange:NSMakeRange(10, 0)];
textView.delegate = self;
textView.layer.borderColor = [UINAVIGATIONBARCOLOR CGColor];
//边框宽度
textView.layer.borderWidth = 0.6f;
//圆角
textView.layer.cornerRadius = 6.0f;
textView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;

0 0
原创粉丝点击