FMHoverScrollKit
这是一个实现控件悬停 UI 效果的控件,类似于网易云课堂详情页的 UI 效果
1.工程引入 FMBaseViewController,并添加要自定义的 controller
- 有关头部 image 及 button 的相关设置可以通过,在 FMBaseViewController 的属性进行设置,示例代码如下:
FMBaseViewController *bvc = [[FMBaseViewController alloc] init];
bvc.btnBackColor = [UIColor cyanColor];
bvc.btnTitleArr = @[@"张三", @"李四", @"王五"];
bvc.indicatorColor = [UIColor yellowColor];
bvc.isIndicatorHidden = YES;
bvc.headImage_H = 100;
bvc.button_H = 30;
bvc.headImageName = @"picture_3";
bvc.isStretch = NO;
2.注意:自定义的 controller 必须继承于 FMParentViewController.h,并且子控制器暂时只支持 UITableViewController
- 子控制器类型1:FMTableViewStylePlain 初始化代码如下:
FMT2ViewController *t2 = [[FMT2ViewController alloc] initWithTableViewStyle:FMTableViewStylePlain];
或者(default)
FMT1ViewController *t1 = [[FMT1ViewController alloc] init];
- 子控制器类型2:FMTableViewStyleGroup 初始化代码如下:
FMT2ViewController *t2 = [[FMT2ViewController alloc] initWithTableViewStyle:FMTableViewStyleGrouped];
或者(用属性修改)
FMT1ViewController *t2 = [[FMT1ViewController alloc] init];
t2.tableViewStyle = FMTableViewStyleGrouped;
3.头部视图是否可以拉伸:
isStretch 属性(default is YES)
- 测试效果查看,在 AppDelegate.m 的 launch 函数中添加(或替换)如下代码:
FMBaseViewController *bvc = [[FMBaseViewController alloc] init];
self.window.rootViewController = bvc;
[self.window makeKeyAndVisible];
- 自定义子 controller 初始化后传入该数组 childVCArr,示例代码如下:
FMBaseViewController *bvc = [[FMBaseViewController alloc] init];
FMT1ViewController *t1 = [[FMT1ViewController alloc] init];
FMT2ViewController *t2 = [[FMT2ViewController alloc] initWithTableViewStyle:FMTableViewStyleGrouped];
FMT3ViewController *t3= [[FMT3ViewController alloc] init];
bvc.childVCArr = @[t1, t2, t3];
####子控制器最好不要超过 5 个,暂不支持滑动(以后可能添加,敬请期待!)
- headView 上的内容可自定义添加,通过 ftc.headView 可拿到 head 部分的视图添加自己的控件。
- 支持 CocoaPods 安装
pod search FMHoverScrollKit
在Podfile中添加
pod "FMHoverScrollKit"
pod install || pod update
##功能尚不完善,持续更新中,敬请期待!