We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func reloadData(){ var titles : [String] = [] for (_,value) in self.dataSource.enumerated(){
titles.append(value.cate_name!) } if let _segDataSource = segmentedDataSource as? JXSegmentedTitleDataSource { _segDataSource.titles = titles segmentedView.isHidden = false listContainerView.isHidden = false
//在此刷新 segmentedView.reloadDataWithoutListContainer() } } //这个方法不会被调用,只有点击后才会触发 func listContainerView(_ listContainerView: JXSegmentedListContainerView, initListAt index: Int) -> JXSegmentedListContainerViewListDelegate { let data = self.dataSource[index] let listView = WPP_CategoriesListView(cateID: data.cate_id!) listView.delegate=self
return listView }
最后:感谢您提供的工具
The text was updated successfully, but these errors were encountered:
No branches or pull requests
func reloadData(){
var titles : [String] = []
for (_,value) in self.dataSource.enumerated(){
//在此刷新
segmentedView.reloadDataWithoutListContainer()
}
}
//这个方法不会被调用,只有点击后才会触发
func listContainerView(_ listContainerView: JXSegmentedListContainerView, initListAt index: Int) -> JXSegmentedListContainerViewListDelegate {
let data = self.dataSource[index]
let listView = WPP_CategoriesListView(cateID: data.cate_id!)
listView.delegate=self
最后:感谢您提供的工具
The text was updated successfully, but these errors were encountered: