我实现了TTTabBar:
_tabBar = [[TTTabGrid alloc] initWithFrame:CGRectMake(0, 0, TTApplicationFrame().size.width-80, TT_ROW_HEIGHT) ];
_tabBar.backgroundColor = [UIColor clearColor];
_tabBar.tabItems = [NSArray arrayWithObjects:
[[[TTTabItem alloc] initWithTitle:@"aaa"] autorelease],
[[[TTTabItem alloc] initWithTitle:@"bbb"] autorelease],
nil];
//_tabBar.selectedTabIndex = 1;
[_tabBar sizeToFit];
self.navigationItem.titleView = _tabBar;
_tabBar是TTTabBar 但出现三列按钮:
如何设置列号,因为我只需要两个按钮。 而且,正如你在我的代码中看到的那样,我设置了initWithTitle:@“aaa”,但按钮上没有任何标题。哪里不对了? 如果我只是喜欢这样的话:
两个网格按钮
答案 0 :(得分:0)
您是否尝试将_tabBar.columnCount设置为2?
但是您正在寻找将样式设置为BarStyle的UISegmentedControl。