XHScrollMenu 是一种显示栏元素,基于网易新闻应用程序。
完全使用 UIKit 框架构建。
轻松将其添加到项目中。
您可以将此功能添加到自己的项目中,源代码
易于使用。
XHScrollMenu 需要 Xcode 5,目标为 iOS 5.0 和更高版本,支持 ARC。
CocosPods 是推荐安装 XHScrollMenu 的方法,只需将以下行添加到 配置文件
。
pod 'XHScrollMenu', '~> 0.1.4'
NSMutableArray *menus = [[NSMutableArray alloc] initWithCapacity:10];
for (int i = 0; i < 20; i ++) {
XHMenu *menu = [[XHMenu alloc] init];
menu.title = [NSString stringWithFormat:@"Title%d", i];
menu.titleColor = [UIColor colorWithWhite:0.141 alpha:1.000];
menu.titleFont = [UIFont boldSystemFontOfSize:16];
[menus addObject:menu];
}
XHScrollMenu *scrollMenu = [[XHScrollMenu alloc] initWithFrame:CGRectMake(0, 44, CGRectGetWidth(self.view.bounds), 36)];
scrollMenu.backgroundColor = [UIColor colorWithWhite:0.902 alpha:1.000];
scrollMenu.delegate = self;
[self.view addSubview:scrollMenu];
scrollMenu.menus = menus;
[scrollMenu reloadData];
if you set default select 2 title item, you need set the property
scrollMenu.defaultSelectIndex = 2;
XHScrollMenu
在 MIT 许可下可用。有关更多信息,请参阅 LICENSE 文件。