gpt4 book ai didi

iOS Tumblr 撰写 View

转载 作者:行者123 更新时间:2023-11-29 11:04:31 27 4
gpt4 key购买 nike

我怎样才能实现以下外观,其中有一个标题,然后是分隔线和一个用于输入正文的区域。看起来好像它几乎是一个 UITextView

enter image description here

最佳答案

很简单,他们使用两个字段。第一个是 UITextfield,允许您使用灰色占位符文本,当用户开始输入时,该文本将被删除。然后添加一个简单的一行图像,最后添加一个 UITextView,允许您拥有多行正文文本。

编辑:要从文本字段中删除圆角边框,请在代码中使用:

[myTextField setBorderStyle:UITextBorderStyleNone];

或者在 Interface Builder 的属性检查器中:

enter image description here

这里有一个更详细但基本的解释:

UITextField *myTextField = [[UITextField alloc] initWithFrame:CGRectMake(0.0f, 0.0f, self.view.bounds.size.width, 44.0f)];
[myTextField setBorderStyle:UITextBorderStyleNone];
[myTextField setPlaceholder:@"Title (optional)"];
[self.view addSubview:myTextField];

UIView *blackLineView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, myTextField.frame.origin.y + myTextField.frame.size.height, self.view.bounds.size.width, 3.0f)];
[blackLineView setBackgroundColor:[UIColor colorWithWhite:0.0f alpha:0.4f]];
[self.view addSubview:blackLineView];

UITextView *myTextView = [[UITextView alloc] initWithFrame:CGRectMake(0.0f, blackLineView.frame.origin.y + blackLineView.frame.size.height, self.view.bounds.size.width, 200.0f)];
[self.view addSubview:myTextView];

关于iOS Tumblr 撰写 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14283165/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com