将两个 UITextField 添加到 UIToolbar
如何将两个 UITextField
添加到 UIToolbar
中,如下所示?
How can I add two UITextField
s to a UIToolbar
like below?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将两个 UITextField
添加到 UIToolbar
中,如下所示?
How can I add two UITextField
s to a UIToolbar
like below?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
正如比尔所说!
看看你给出的图片,我认为它不是一个带有两个 UITextField 的 UIToolbar。如果要使用UIToolbar,不用IB也可以写。代码如下:
您可以更改UIToolBar和UITextFields的样式。
祝你好运!
As Beer said!
Look at your picture given, I think it's not a UIToolbar with two UITextFields. If you want to use UIToolbar, you can write it without IB. The codes like following:
You can change the style of the UIToolBar and UITextFields.
Good Luck!
如果您使用 IB 将 UIToolbar 添加到视图中,您所需要做的就是将 UITextField 拖到 UIToolbar 上。
If you are using IB to add the UIToolbar to the view all you need to do is drag the UITextField onto the UIToolbar.
标准 UIToolbar 无法做到这一点。这是一件单行的事情。
但是您可以将它们添加到 UIView 中,在其中将渐变绘制为背景。看看 UIView 和 Core Graphics。
You just can't with standard UIToolbar. It's a one-row thing.
But you can add them to a UIView where you paint the gradient as background. Have a look at UIView and Core Graphics.