如何构建“面板”在 iPhone 开发中(带图片)?
我需要一个像“面板”这样的工具栏,可以包含文本字段和按钮,就像可以定义其宽度、高度及其位置的工具栏一样。并且你可以将你想要的元素放入“工具栏”中。
如下所示:
有任何线索吗?
I need a toolbar like "panel" that could contain text fields and buttons, just like a toolbar you can define its width and height and its position. And you can put the elements you want into the "toolbar".
Like the following:
Any clues?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定我是否理解。你能不能采用一个普通的 UIView 并将文本字段和按钮放入其中,无论高度和宽度如何,然后在需要查看它和
时
addSubview
它完成后删除FromSuperview ?Not sure I understand. Can you not take a plain
UIView
and put text fields and buttons in it, with whatever height and width, and thenaddSubview
it when you need to see it andremoveFromSuperview
when you are done?为什么不使用工具栏并向其添加子视图呢?您可以将 UIViews 和 UIButtons 作为文本分层。
Why not use the toolbar and add add subViews to it. You can layer UIViews and UIButtons as text.