❓How to dynamically insert or delete some elements(怎么动态的插入或者删除一组元素)
You can change the element properties of the opposite side of the TableView’s Sections array and then call reloadData.(您可以更改TableView的Sections数组的另一侧的元素属性,然后调用reloadData。)
❓How to listen to other agents of UIScrollView(怎么监听UIScrollView其他代理方法)
public struct ScrollViewDelegate {
public var scrollViewDidScroll:((_ scrollView: UIScrollView) -> Void)?
public var scrollViewWillBeginDragging:((_ scrollView: UIScrollView) -> Void)?
public var scrollViewWillEndDragging:((_ scrollView: UIScrollView, _ velocity: CGPoint, _ targetContentOffset: UnsafeMutablePointer<CGPoint>) -> Void)?
public var scrollViewDidEndDragging:((_ scrollView: UIScrollView, _ decelerate: Bool) -> Void)?
public var scrollViewWillBeginDecelerating:((_ scrollView: UIScrollView) -> Void)?
public var scrollViewDidEndDecelerating:((_ scrollView: UIScrollView) -> Void)?
}
Can implement the above proxy method of UITableView(可以实现`UITableView的上述代理方法)
Example
tableView.scrollDelegate?.scrollViewDidScroll = { scrollView in
}
I feel that there are too few supported features.(我觉得支持的功能太少了。)
typora-copy-images-to: ../SwiftTableViewGroup/images/ typora-root-url: ../SwiftTableViewGroup
SwiftTableViewGroup
SimpleJSON的二次修改config.settings.pyconfig.settings.pydatatest_case.test_auto_caseinterfacetest_case.test_manual_caseconfig.settings.pyconfig.settings.pydatatest_case.test_auto_caseinterfacetest_case.test_manual_casemastermaster-fetch22.2.0rust-runtimeandaws/rust-runtimeSimpleJSON的二次修改virt_ring.hvirtio.h.tomlfileinterfaceswift-driverswiftcompiler trunkOptions.swiftObservableCache-spark-uos-52(已停止支持)ServiceclassAdguard/Ublock Origin/Adblock Plus(用Adblock Plus源码编译的软件也支持,例如嗅觉浏览器 ) 支持复杂语法的过滤器,或者能兼容大规则的浏览器例如 X浏览器{{variable}}?[%{{variable}} 选项1 | 选项2]===content===.sto.o)Dictionary<String, Any>&Array<Any>model_runner.pybmodel模型工具.sto.o).sto.o)UIScrollView(怎么监听UIScrollView其他代理方法)代码例子
ChangeLog(更新记录)
v2.0.0
UICollectionViewdata driver(支持UICollectionView数据驱动)Apiis easier to use(更改Api使用更简单)安装
Swift Package Manager(Xcode 11)
CocoaPods
Carthage
Claim(要求)
Xcode11Swift5.1How to use(怎么使用)
UITableView
Fake code(伪代码)
Create a static text list(创建一个简单的列表)
Create complex TableView(创建复杂的表格)
Dynamic change quantity(动态更改数量)
Dynamic height(动态修改高度)
UICollectionView
Problem
❓How to dynamically insert or delete some elements(怎么动态的插入或者删除一组元素)
❓How to listen to other agents of
UIScrollView(怎么监听UIScrollView其他代理方法)Example
I feel that there are too few supported features.(我觉得支持的功能太少了。)
Api Document(Api 文档)
contact me