禁用我的标签栏和等待/加载图像视图上屏幕的导航栏
我正在开发一个基于网络服务的应用程序。我需要加载/等待图像视图,该图像视图应该禁用我的选项卡栏和标签栏。屏幕的导航栏直到加载网络服务。当我将包含等待动画的图像视图保留在视图控制器中时,出现的问题是它仅禁用 self.view。谁能告诉我我做错了什么吗?
问候, 萨蒂什
I am working on an web service based application. I need Loading/waiting imageview that should disable my Tabbar & Navigationbar of the screen till Loading of web service . The issue when I keep the imageview that contains the waiting animation over in my viewcontroller, it disables only self.view. Can anybody please tell what i went wrong?
Regards,
sathish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过
tabbar.hidden=YES
隐藏选项卡栏,或者如果您想从窗口中删除选项卡栏并重新放置,则需要释放选项卡栏,然后重新分配它。 ..但是释放标签栏会使您的应用程序崩溃,因此在释放标签栏之前将其从超级视图中删除。
然后再次分配并放在窗口上
You can either hide the tab bar by
tabbar.hidden=YES
or if you want to remove the tab bar from the window and put it again, you need to release the tab bar and then allocate it again...But releasing the tab bar will make your app crash, so before releasing the tab bar remove it from super view.
then allocate it again and put it on the window