CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Sep 2017 |
| Depends on: | |
| SDWebImage | = 3.8.2 |
| Masonry | = 1.0.2 |
1. Import the class :
#import "YANScrollMenu.h"
2. Simply initialize a YANScrollMenu the same way you set up a regular UIView:
self.menu = [[YANScrollMenu alloc] initWithFrame:CGRectMake(0, 0, 375,150) delegate:self];
# add to view
[self.view addSubview:self.menu];
# you can also set to be a tableHeaderView
self.tableView.tableHeaderView = self.menu;3. YANScrollMenuDataSource must be adopted :
# the number of items in each section
- (NSUInteger)scrollMenu:(YANScrollMenu *)menu numberOfItemsInSection:(NSInteger)section;
# the number of section
- (NSUInteger)numberOfSectionsInScrollMenu:(YANScrollMenu *)menu;
# the dataSource of item
- (id<YANObjectProtocol>)scrollMenu:(YANScrollMenu *)scrollMenu objectAtIndexPath:(NSIndexPath *)indexPath;4. There're also some function in YANScrollMenuDelegate that can be used to customize:
# the size of item
- (CGSize)itemSizeOfScrollMenu:(YANScrollMenu *)menu;
# the customize view to set to be the header in each section
- (UIView *)scrollMenu:(YANScrollMenu *)menu headerInSection:(NSUInteger)section;
# the height of header
- (CGFloat)heightOfHeaderInScrollMenu:(YANScrollMenu *)menu;
# the height of pageControl
- (CGFloat)heightOfPageControlInScrollMenu:(YANScrollMenu *)menu;
# automatic update frame or not
- (BOOL)shouldAutomaticUpdateFrameInScrollMenu:(YANScrollMenu *)menu;
# the callback when the item did selected
- (void)scrollMenu:(YANScrollMenu *)menu didSelectItemAtIndexPath:(NSIndexPath *)indexPath;5. Custom appearance :
# the icon size of item
[[YANMenuItem appearance] setIconSize:30];
# the cornerRadius of icon
[[YANMenuItem appearance] setIconCornerRadius:15];
# the textFont of the label
[[YANMenuItem appearance] setTextFont:[UIFont systemFontOfSize:12]];
# the textColor of the label
[[YANMenuItem appearance] setTextColor:[UIColor darkTextColor]];
# the space between icon and label
[[YANMenuItem appearance] setSpace:5];YANScrollMenu depend on SDWebImage and Masonry.
Notes : When the version of SDWebImage large than 3.8.2 , gif will not be supported.
YANScrollMenu is released under the MIT license. See LICENSE file for details.
Any suggestion or question? Please create a Github issue .