XHItemScrollToolBar 是用于滚动的 TabBar 或 ItemBar,用于用户分类选择
易于添加到您的项目中。
您可以添加任意多的项目项,XHItemScrollToolBar 将自动布局它们。
XHItemScrollToolBar 需要 Xcode 5 或更高版本,针对 iOS 5.0 及以上版本,ARC 启用。
将 XHItem.h/XHItem.m 和 XHItemView.h/XHItemView.m 以及 XHItemScrollToolBar.h/XHItemScrollToolBar.m 文件拖放到您的项目中。
不需要其他框架。
for (int i = 0; i < 10; i ++) {
XHItem *item = [[XHItem alloc] initWithNormalImage:[UIImage imageNamed:@"tabBar-camera"] selectedImage:[UIImage imageNamed:@"tabBar-camera-on"] title:@"title5" itemSelectedBlcok:^(XHItemView *itemView) {
NSInteger index = itemView.item.index;
NSLog(@"index : %d", index);
}];
[items addObject:item];
}
XHItemScrollToolBar *itemScrollToolBarToMid = [[XHItemScrollToolBar alloc] initWithFrame:CGRectMake(0, CGRectGetHeight(self.view.bounds) / 2.0 - kXHItemScrollToolBarHeight / 2.0, CGRectGetWidth(self.view.bounds), kXHItemScrollToolBarHeight)];
itemScrollToolBarToMid.itemWidth = CGRectGetWidth([[UIScreen mainScreen] bounds]) / 5.0;
itemScrollToolBarToMid.items = items;
itemScrollToolBarToMid.selectIndex = 2;
[self.view addSubview:itemScrollToolBarToMid];
[itemScrollToolBarToMid reloadData];
CocosPods 是推荐安装 XHItemScrollToolBar 的方式,只需将以下行添加到 Profile
pod 'XHItemScrollToolBar'
XHItemScrollToolBar 在 MIT 许可下可用。请参阅 LICENSE 文件以获取更多信息。
English:如果您在您的项目中使用开源组件,请联系我们告知您的应用程序名称,否则会有后果。