gpt4 book ai didi

iPhone UITextField 和 UIButton 在一个灰色框架中

转载 作者:行者123 更新时间:2023-12-03 20:52:32 24 4
gpt4 key购买 nike

我想创建这样的东西:

enter image description here

我想将带有 UIButton 的 UITextField 放入一个灰色框架中,并且我希望该灰色框架包含按钮的边框。

请有人给我看一些示例代码!

谢谢!

最佳答案

1. 使用所需矩形的 UIImageView。将背景图像设置为渐变灰色图像。

 UIImageView*myImageView=[[UIImageView alloc] initWithFrame:yourFrame];
[myImageView setImage:[UIImage imageNamed:@"grayBackground.png"];
[self.view addSubview:myImageView];

2.使用圆矩形。 UITextField 使其成为 ImageView 的 subview 。使用占位符作为“写回复...”,使其成为 ImageView 的 subview 。

UITextField*myField=[[UITextField alloc] initWithFrame:yourRect];
[myField setBorderStyle:UITextBorderStyleRoundedRect];
[myField setPlaceholder:@"Write a reply..."];
[myImageView addSubview:myField];

3. 使用类型为 CustomUIButton 并将发送图像作为其背景图像,使其成为 ImageView 的 subview 。

UIButton*myButton=[UIButton buttonWithType:UIButtonTypeCustom];
[myButton setFrame:yourRect]
[myButton setBackgroundImage:[UIImage imageNamed:@"sendImage.png"] forState:UIControlStateNormal];
[myImageView addSubView:myButton];

关于iPhone UITextField 和 UIButton 在一个灰色框架中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9885798/

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