iPad:C#中有类似GroupBox的框架吗?
我是 iPhone/iPad 开发新手。我正在寻找一种方法来直观地对一些控件进行分组,就像 C# 中的 GroupBox 一样。我知道由于空间有限,这在 iPhone 中没有多大意义,但我的应用程序仅适用于 iPad,客户希望看到这一点。有什么想法吗?
I'm new to iPhone/iPad development. I'm looking for a way to visually groups some controls just like the GroupBox in C#. I know it doesn't make much sense in iPhone due to limited space, but my app is for iPad only and customer wish to see that. Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不直接。您可以使用 Label 和 UIView 以及一些自定义绘图来模拟它(只是为了绘制边框,如果您愿意的话还可以绘制内部阴影)。
Not directly. You could simulate it with a Label and a
UIView
with a little bit of custom drawing (just to draw the border, and an inner shadow if you'd like).