English 中文(简体)
添加超过 5 个标签。 更多的是显示在 iphone 上 。
原标题:Adding more than 5 Tabs.. MORE isn s showing up iPHONE

好吧,我正在使用一个自定义的标签栏(不是基于标签的应用程序),但是我想要更多按钮出现的行为,如果它是一个基于标签的应用程序,如果我超过5个项目,它的行为与它的行为相同。

由于这只是一个TABBAR, 通常的 XIB 将TAB BAR ITEMS 添加到它中, 它只是不断在显示时将其添加到 TABBAR 。 我如何学习/ 生成, 最好继承基于标签的 App 的行为, 这样我的制表栏就可以限制它的显示, 显示得更多, 并且行为得当?

请不要告诉我, 改写您的应用程序作为一个基于标签的应用程序, 因为这不是我想做的, 并且不能做其它问题。

提前感谢。

最佳回答

添加到 TabBar 的更多按钮是 < a href=" http:// developer.apple.com/library/ios/#DOCUATIONT/UIKit/Reference/UITabBar Consultants_Class/Reference/Reference.html" rel=“nofollow”>UITabBarcurrent 而不是制表栏本身的功能。 UITab Bar Conserence 拥有一个制表栏, 并添加行为, 如 More 按钮、 编辑和您在大多数 Tabbbed Apps 中看到的所有花哨。

通常情况下, 这是用作您的应用程序的 rootView 控制器, 但您应该能够添加一个到您的非基于 tab 的应用程序中。 但是, 您需要重写一些您的代码 。

例如, UITabBar 主计长不需要一个 Tab 项目的阵列,而需要一个需要显示的所有视图控制器的阵列。 每个控制器将变成一个标签项目, 每个标签项目中显示的标题和图像将取自与之相关的 UIView 控制器。 它将管理显示和隐藏与选中标签项目相关的视图控制器 。

如果您不想使用 UITabBar 主计长, 并且仍然喜欢 UITabBar, 我想您别无选择, 只能自己实施行为, 或许通过子分类 UITabBar 。 您还需要本地化版本的“ 更多” 文本 。

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签