English 中文(简体)
标签栏项目的类别是什么
原标题:what is class of tab bar item
  • 时间:2012-05-27 17:09:49
  •  标签:
  • iphone

当我将xib中的元素连接到头文件时。它给了我

@property (strong, nonatomic) IBOutlet UITabBarItem *contract;
@property (strong, nonatomic) IBOutlet UITabBarItem *history;

然而,当我试图打印我的标签栏(UITabBar)的底部时, 我得到2 UITabBarbutton。

我的问题是标签栏项目的类别是什么。是UITabBarItem还是UITabBarButton

问题回答

首先:你正在做的事情不被推荐。你不应该依赖Apple视图的私有子视图,因为它们可能随时发生变化。

要实际回答所提出的问题,它就是因为 UITabBaremot 不是一个实际的视图,所以不会在您的观点层次中结束。 在 UITabbar 代码中可能发生的情况是, UITabBarmote 被循环使用,而对于每个代码,系统都对“code>UITabBarbutton 类进行新的查看,该类是“code>UIUCORT ”的私有子类。

您永远不应该直接访问UITabBarButton。正如BoltClock在评论中指出的那样,你应该重新考虑你的设计,这样你就不需要这样做了。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签