TabBar 内部视图的问题 (iPhone)
我有一个 UITableView,我将其放置在 TabView 中。我试图在 TableView 的中心放置一个“旋转器”和一个标签。当我尝试在 TabBar 内查看它时,我看不到微调器或标签。当我单独查看这个笔尖时,我看到了微调器和 TabBar。
似乎有一些关于视图/选项卡栏的内容我没有得到......
I have a UITableView that I am placing inside a TabView. I am trying to put a "spinner" and a label in the center of the TableView. When I view I try to view it inside the TabBar, I do not see the spinner or label. When I view this nib by itself, I see the spinner and TabBar.
There seems to be something about views / tabbars that I am not getting...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您不要将 UILabel 和 UIActivity 指示器添加到笔尖中的 tableview 上,而是通过将它们添加到 viewDidLoad 或视图控制器的适当方法中,将它们添加到包含 tableview 的视图中。
例如,
类似地,您可以添加标签并将其放置在视图中。
然后,您可以
添加和
在希望微调器开始或停止动画的任何位置 。我不确定你想用这个标签做什么。如果要显示加载消息,您可以根据需要使标签隐藏或可见。
Instead of adding the UILabel and UIActivity indicator on the tableview in the nib, I suggest you add them to the view containing the tableview by adding them in viewDidLoad or an appropriate method of your view controller.
e.g.
Similarly you can add the label and position it in the view.
You can then add
and
wherever you want the spinner to start or stop animating. I am not sure what you want to do with the label. If its to display a loading message, you can make the label hidden or visible as appropriate.
如果您将标签放在 UITableView 上,那么 TableView 很可能会重叠在您的标签和微调器上......
if you are putting Label On the UITableView than chances are there that TableView will be overlapped on your label and spinner...