Swift 实现下拉刷新 JxbRefresh
- 授权协议: MIT
- 开发语言: Swift
- 操作系统: iOS
- 软件首页: https://github.com/JxbSir/JxbRefresh
- 官方下载: https://github.com/JxbSir/JxbRefresh/archive/master.zip
软件介绍
JxbRefresh 是采用Swift 实现的 iOS 下拉刷新。
正常下拉刷新:
self.taleView.addPullRefresh({ [weak self] in
dispatch_after(afterTime(3), dispatch_get_global_queue(0, 0), {
self?.taleView.stopPullRefresh()
})
})gif 动画下拉刷新:
let arrIdle: NSMutableArray = NSMutableArray.init(capacity: 0)
for i in 1...60 {
let name = String.init(format: "dropdown_anim__000%zd", i)
let image = UIImage.init(named: name)
arrIdle.addObject(image!)
}
let arrRefresh: NSMutableArray = NSMutableArray.init(capacity: 0)
for i in 1...3 {
let name = String.init(format: "dropdown_loading_0%zd", i)
let image = UIImage.init(named: name)
arrRefresh.addObject(image!)
}
self.taleView.addGifPullRefresh(idleImages: arrIdle, refreshImages: arrRefresh, closure: { [weak self] in
dispatch_after(afterTime(3), dispatch_get_global_queue(0, 0), {
self?.taleView.stopPullRefresh()
})
})加载更多数据下拉刷新:
self.taleView.addFooterRefresh(closure: {[weak self] in
dispatch_after(afterTime(3), dispatch_get_global_queue(0, 0), {
self?.taleView.stopPullRefresh()
// self?.taleView.setFooterEnable(false)
})
})JavaScript & jQuery
David Sawyer McFarland / O Reilly / 2011-10-28 / USD 39.99
You don't need programming experience to add interactive and visual effects to your web pages with JavaScript. This Missing Manual shows you how the jQuery library makes JavaScript programming fun, ea......一起来看看 《JavaScript & jQuery》 这本书的介绍吧!
