jjzjj

ios - tableView.reloadSections(sectionIndex,: . 无)无法正常工作

coder 2023-09-10 原文

I created 3 headerViews and added check box, when select section0 check box i want to expand cells in that section.第一次创建所有部分时,当我选中创建单元格的复选框时,但当我取消选中复选框时,它不会隐藏/删除单元格。但我想删除所有单元格或隐藏第 0 节、第 1 节等中的所有单元格...

我的代码是

var dateArray:[String]?//Globally
var button:UIButton?//Globally

//Mark - TableView Datasource
 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if tableView == filterView?.filterTblView {
        if section == 0 {
            print(dateArray?.count ?? 0)
            return dateArray?.count ?? 0
        } else if section == 1 {
            return callTypeArray.count
        } else {
            return departmentArray.count
        }
    }
    else {
        return 0
    }
}


func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let height:CGFloat!
        if UIDevice.current.userInterfaceIdiom == .pad {
            height = 60
        } else {
            height = 40
        }
        //Create header view
        let headerView = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: height))
        let lbl = UILabel(frame: CGRect(x: 50, y: 0, width: headerView.frame.width - 50, height: headerView.frame.height))
        lbl.textAlignment = .left

        lbl.text = sectionsArray[section]
        headerView.addSubview(lbl)

        button = UIButton(type: .custom)
        button?.frame = CGRect(x: 10, y: 5, width: 30, height: 30)
        button?.addTarget(self, action: #selector(self.onclickDateCheckMark), for: .touchUpInside)
        button?.setImage(UIImage.init(named: "uncheck"), for: UIControl.State.normal)
        button?.setImage(UIImage.init(named: "check"), for: UIControl.State.selected)
        headerView.addSubview(button!)
        button?.tag = section

        return headerView
}


@objc func onclickDateCheckMark(sender:UIButton) {
    if sender.tag == 0 {
        if sender.isSelected == true {
            sender.isSelected = false
            DispatchQueue.main.async {
//                        self.dateArray?.removeAll()
//                    let indexPaths = self.filterView?.filterTblView.indexPathsForVisibleRows
//                    print(indexPaths as Any)
//                    self.filterView?.filterTblView.reloadRows(at: indexPaths!, with: UITableView.RowAnimation.top)

                self.dateArray?.removeAll()
                let sectionIndex = IndexSet(integer: 0)
                   self.filterView?.filterTblView.reloadSections(sectionIndex, with: .none) // or fade, right, left, top, bottom, none, middle, automatic
            }
        } else {
            DispatchQueue.main.async {
                self.dateArray = ["Today", "Yesterday", "This week", "Last week", "This month", "Last month", "Last 30days"]
//                    print(self.dateArray!)
//                    let indexPaths = self.filterView?.filterTblView.indexPathsForVisibleRows
//                    print(indexPaths as Any)
//                    self.filterView?.filterTblView.reloadRows(at: indexPaths!, with: UITableView.RowAnimation.top)
                let sectionIndex = IndexSet(integer: 0)
                self.filterView?.filterTblView.reloadSections(sectionIndex, with: .none) // or fade, right, left, top, bottom, none, middle, automatic
            }
            sender.isSelected = true
        }
    }

    if sender.tag == 1 {
        if sender.isSelected == true {
            sender.isSelected = false
            DispatchQueue.main.async {
                self.callTypeArray?.removeAll()
                let sectionIndex = IndexSet(integer: 1)
                self.filterView?.filterTblView.reloadSections(sectionIndex, with: .none)
            }
        } else {
            DispatchQueue.main.async {
                self.callTypeArray = ["1", "2", "3", "4"]
                let sectionIndex = IndexSet(integer: 1)
                self.filterView?.filterTblView.reloadSections(sectionIndex, with: .none)
            }
            sender.isSelected = true
        }
    }

    if sender.tag == 2 {
        if sender.isSelected == true {
            sender.isSelected = false
        } else {
            sender.isSelected = true
        }
    }


}

根据我在 viewForHeaderInSection 部分的实际观察: 复选框按钮 当我调用 reloadSections 时再次创建。这就是为什么它没有进入 if 条件 if sender.isSelected == true { }onclickDateCheckMark 它直接进入 false 条件。

最佳答案

  1. 创建 2 个数组,第一个用于数据源,第二个用于存储选定的部分索引。

    var arrDataSource : [Any] = [] // your data for all three section, datatype will be as per your requirement
    var arrSelectedIndex : [Int] = [] // initially its empty as when VC loads on section will be expanded, if you want to expand any section initially then fill array with that section.
    
  2. viewDidLoad中,

    arrDataSource = [arrSection1, arrSection2,arrSection3] // manage your data with single array.. its more dynamic for future purpose 
    
  3. numberOfSections中,

    func numberOfSections(in tableView: UITableView) -> Int {
        return arrDataSource.count
    }
    
  4. 假设您的 viewForHeaderInSection 工作正常,这里给出按钮标签(您已经完成)

  5. buttonAction 上,

    // First check in section is selected or not.
    if arrSelectedIndex.contains(sender.tag){
        // IF section is selecetd then remove it from arrSelectedIndex
        let aIndex = arrSelectedIndex.firstIndex(of: sender.tag)
        if let aInt = aIndex {
            arrSelectedIndex.remove(at: aInt)
        }
    }
    else{
        // IF section is not selecetd then add it to arrSelectedIndex
        arrSelectedIndex.append(sender.tag)
    }
    // reload tableview
    tblView.reloadSections([sender.tag], with: .automatic)
    
  6. numberOfRowsInSection中,

    return arrSelectedIndex.contains(section) ? (arrDataSource[section] as AnyObject).count : 0
    

注意:这是一个想法和最佳方法,如果我忘记了任何条件或您有任何疑问,请在下面发表评论。

关于ios - tableView.reloadSections(sectionIndex,: . 无)无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55567918/

有关ios - tableView.reloadSections(sectionIndex,: . 无)无法正常工作的更多相关文章

  1. ruby-on-rails - 由于 "wkhtmltopdf",PDFKIT 显然无法正常工作 - 2

    我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-

  2. ruby-on-rails - 'compass watch' 是如何工作的/它是如何与 rails 一起使用的 - 2

    我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t

  3. ruby-on-rails - 无法使用 Rails 3.2 创建插件? - 2

    我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby​​1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在

  4. ruby - 无法运行 Rails 2.x 应用程序 - 2

    我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby​​:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r

  5. ruby-on-rails - 无法在centos上安装therubyracer(V8和GCC出错) - 2

    我正在尝试在我的centos服务器上安装therubyracer,但遇到了麻烦。$geminstalltherubyracerBuildingnativeextensions.Thiscouldtakeawhile...ERROR:Errorinstallingtherubyracer:ERROR:Failedtobuildgemnativeextension./usr/local/rvm/rubies/ruby-1.9.3-p125/bin/rubyextconf.rbcheckingformain()in-lpthread...yescheckingforv8.h...no***e

  6. ruby - 无法让 RSpec 工作—— 'require' : cannot load such file - 2

    我花了三天的时间用头撞墙,试图弄清楚为什么简单的“rake”不能通过我的规范文件。如果您遇到这种情况:任何文件夹路径中都不要有空格!。严重地。事实上,从现在开始,您命名的任何内容都没有空格。这是我的控制台输出:(在/Users/*****/Desktop/LearningRuby/learn_ruby)$rake/Users/*******/Desktop/LearningRuby/learn_ruby/00_hello/hello_spec.rb:116:in`require':cannotloadsuchfile--hello(LoadError) 最佳

  7. ruby-on-rails - rspec should have_select ('cars' , :options => ['volvo' , 'saab' ] 不工作 - 2

    关闭。这个问题需要detailsorclarity.它目前不接受答案。想改进这个问题吗?通过editingthispost添加细节并澄清问题.关闭8年前。Improvethisquestion在首页我有:汽车:VolvoSaabMercedesAudistatic_pages_spec.rb中的测试代码:it"shouldhavetherightselect"dovisithome_pathit{shouldhave_select('cars',:options=>['volvo','saab','mercedes','audi'])}end响应是rspec./spec/request

  8. ruby-on-rails - s3_direct_upload 在生产服务器中不工作 - 2

    在Rails4.0.2中,我使用s3_direct_upload和aws-sdkgems直接为s3存储桶上传文件。在开发环境中它工作正常,但在生产环境中它会抛出如下错误,ActionView::Template::Error(noimplicitconversionofnilintoString)在View中,create_cv_url,:id=>"s3_uploader",:key=>"cv_uploads/{unique_id}/${filename}",:key_starts_with=>"cv_uploads/",:callback_param=>"cv[direct_uplo

  9. ruby - 无法覆盖 irb 中的 to_s - 2

    我在pry中定义了一个函数:to_s,但我无法调用它。这个方法去哪里了,怎么调用?pry(main)>defto_spry(main)*'hello'pry(main)*endpry(main)>to_s=>"main"我的ruby版本是2.1.2看了一些答案和搜索后,我认为我得到了正确的答案:这个方法用在什么地方?在irb或pry中定义方法时,会转到Object.instance_methods[1]pry(main)>defto_s[1]pry(main)*'hello'[1]pry(main)*end=>:to_s[2]pry(main)>defhello[2]pry(main)

  10. ruby - 无法在 60 秒内获得稳定的 Firefox 连接 (127.0.0.1 :7055) - 2

    我使用的是Firefox版本36.0.1和Selenium-Webdrivergem版本2.45.0。我能够创建Firefox实例,但无法使用脚本继续进行进一步的操作无法在60秒内获得稳定的Firefox连接(127.0.0.1:7055)错误。有人能帮帮我吗? 最佳答案 我遇到了同样的问题。降级到firefoxv33后一切正常。您可以找到旧版本here 关于ruby-无法在60秒内获得稳定的Firefox连接(127.0.0.1:7055),我们在StackOverflow上找到一个类

随机推荐