gpt4 book ai didi

iphone - 向 UIToolbar 添加两个 UITextField

转载 作者:行者123 更新时间:2023-11-28 23:12:08 25 4
gpt4 key购买 nike

如何将两个 UITextField 添加到 UIToolbar 中,如下所示?

最佳答案

正如比尔所说!
看看你给出的图片,我认为它不是带有两个 UITextField 的 UIToolbar。如果要用UIToolbar,不用IB也可以自己写。代码如下:

UIToolbar *tool = [[UIToolbar alloc] initWithFrame:CGRectMake(40.0,0.0,400,180.0)];
UITextField *firstTextField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 10.0, 360.0, 60)];
firstTextField.backgroundColor = [UIColor whiteColor];
[firstTextField.layer setCornerRadius:18];
UITextField *secondTextField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 100.0, 360.0, 60)];
secondTextField.backgroundColor = [UIColor whiteColor];
[secondTextField.layer setCornerRadius:18];
secondTextField.borderStyle = UITextBorderStyleBezel;

[tool addSubview:firstTextField];
[tool addSubview:secondTextField];

[view addSubview:tool];
[tool release];
[firstTextField release];
[secondTextField release];

您可以更改 UIToolBar 和 UITextFields 的样式。

祝你好运!

关于iphone - 向 UIToolbar 添加两个 UITextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7922702/

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