项目介绍:
FNMatchPullgithub地址:https://github.com/Fnoz/FNMatchPullSwift实现的火柴图案&火柴文字下拉刷新动效(超炫酷下拉刷新),Swift&加强版本CBStoreHouseRefreshControl.
基础使用Demo:Style = .Pattern类型动画内容为火柴棒组成的图案[Objective-C] 查看源文件 复制代码
let matchAnimator = FNMatchPullAnimator(frame: CGRectMake(0, 0, 320, 80)) matchAnimator.startPoints = [NSValue.init(CGPoint: CGPointMake(SCREENWIDTH/2 - 30, 25)), NSValue.init(CGPoint: CGPointMake(SCREENWIDTH/2 - 30, 55))] matchAnimator.endPoints = [NSValue.init(CGPoint: CGPointMake(SCREENWIDTH/2 - 15 - 30, 40)), NSValue.init(CGPoint: CGPointMake(SCREENWIDTH/2 - 15 - 30, 40))] tableView.addPullToRefreshWithAction({ //refresh action }, withAnimator: matchAnimator)
Style = .Text类型传入英文字符串,自动转换为图案动画,可自定义线条宽度[Objective-C] 查看源文件 复制代码
let matchAnimator = FNMatchPullAnimator(frame: CGRectMake(0, 0, 320, 80)) matchAnimator.text = "FNOZ" matchAnimator.lineWidth = 4.0 matchAnimator.style = .Text tableView.addPullToRefreshWithAction({ //refresh action }, withAnimator: matchAnimator)
效果:
来源:OC原版是 coolbeet 的 CBStoreHouseRefreshControl,另外增加了酷酷的直接把英文字符串变成图片的功能。
DEMO直接下载: