iPhone:我们可以在视图基础应用程序中使用选项卡栏控制器吗
我们可以在视图基本应用程序中使用UITab栏控制器吗?谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们可以在视图基本应用程序中使用UITab栏控制器吗?谢谢
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
是的,你可以。
你可以看看苹果提供的“TheElements”示例。
您可以在这里找到它:
https://developer.apple。 com/library/ios/#samplecode/TheElements/Introduction/Intro.html
查看应用程序委托。
这是一个非常直接的例子。
对于您的要求,我尝试做一个简单的例子:
我不在 xCode 旁边,我是通过文本编辑完成的,所以请在使用时检查它。
沙尼
Yes you can.
you can look at the "TheElements" example that apple provides.
you can find it here:
https://developer.apple.com/library/ios/#samplecode/TheElements/Introduction/Intro.html
look at the app delegate.
its very strait forward example.
for you request i tried to make a simple example:
i am not next to xCode and i did it with text edit, so please check it when you use it.
shani
是的,我们可以..
为此,您必须创建 UITabBarViewController 及其对象,然后与您的 Application..like 一起引用它:
在实现文件的 ApplicationDidFinish Launching 中的 AppDelegate.h 中
添加以下代码
在界面生成器中,您必须将 TabBarController 添加到 MainWindow 并将其关联与 IBOutLet。给出您想要在 tabBar 中显示的视图。
享受..
Yes we can..
For that you have to create UITabBarViewController and its Object then refrence it with you Application..like :
in your AppDelegate.h
in you implementation file's ApplicationDidFinish Launching add the following Code
In interface builder you have to add the TabBarController to your MainWindow and relate it with the IBOutLet. Give what ever view you want to display in tabBar.
enjoy..