iOS開發(fā)之TableView列表抽屜效果

最近項目需求有個列表抽屜效果让簿,之前寫過忘了壤短,現(xiàn)在總結(jié)記錄一下江掩,代碼如下:

class HTClassSearchViewController: HTClassBaseViewController {

    var var_rightImageView = UIImageView()
    
    var var_stateArray:[String] = ["0","0","0","0"]
    
    var var_sectionArray: [String] = [
        "How to start recording screen?",
        "Where is the video recording file saved?",
        "The screen recording process stops suddenly.",
        "What is the reason for no sound?",
    ]
    
    var var_dataArray: [HTClassSearchModel] = [
        HTClassSearchModel(title: "Click the start screen recording button, we have configured the default parameters for you"),
        HTClassSearchModel(title: "The recorded video is saved to the APP by default, and you can manage or view the video in the video library; in the parameter setting of the screen recording page, you can adjust the storage location of the recorded video: only in the APP, or both in the APP and the system photo album."),
        HTClassSearchModel(title: "The reason is \"null\".This situation is caused by insufficient memory and CPU currently used by the iOS system, and the iOS system will actively close the running applications. It is recommended that you try to close the unused applications in the background before starting to record the screen to ensure the normal recording process."),
        HTClassSearchModel(title: "This is an iOS system bug. When you encounter such problems, please click the home button to move the concave main screen, and then return to need to record"),
    ]
    override func viewDidLoad() {
        super.viewDidLoad()
        
        ht_SetNav()

        self.var_leftBtn.setTitle("Home", for: .normal)
        
        self.view.addSubview(self.searchTableView)
        self.searchTableView.snp.makeConstraints { make in
            make.edges.equalToSuperview()
        }
    }
    
    lazy var searchTableView: UITableView = {
        
        let tableView = UITableView(frame: .zero, style: .plain)
        tableView.delegate = self
        tableView.dataSource = self
        tableView.backgroundColor = .clear
        tableView.separatorStyle = .none
        tableView.rowHeight = UITableView.automaticDimension
        tableView.register(HTClassSearchTableViewCell.self, forCellReuseIdentifier: "HTClassSearchTableViewCell")
        tableView.contentInsetAdjustmentBehavior = .never
        return tableView
    }()

}

extension HTClassSearchViewController: UITableViewDelegate,UITableViewDataSource {
    
    func numberOfSections(in tableView: UITableView) -> Int {
        return self.var_sectionArray.count
    }
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        
        if var_stateArray[section] == "1" {
            return 1
        }
        return 0
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        
        let cell = tableView.dequeueReusableCell(withIdentifier: "HTClassSearchTableViewCell", for: indexPath) as! HTClassSearchTableViewCell
        
        cell.model = self.var_dataArray[indexPath.section]
        
        return cell
    }
    
    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        
        return UITableView.automaticDimension
    }
    
    func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
         return 50
    }

    func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        return self.var_sectionArray[section]
    }

    func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
       
        let sectionView = UIView(frame: CGRectMake(0, 0, KScreenWidth, 50))
        sectionView.backgroundColor = .white
        
        let titleLabel = UILabel(frame: CGRectMake(15, 0, KScreenWidth-80, 50))
        titleLabel.text = "\(section+1)" + "." + self.var_sectionArray[section]
        titleLabel.textColor = Color_666666
        titleLabel.font = SystemFont(14)
        titleLabel.textAlignment = .left
        sectionView.addSubview(titleLabel)
        
        var_rightImageView = UIImageView(frame: CGRectMake(KScreenWidth-35, (50-10)/2, 10, 10))
        var_rightImageView.image = UIImage(named: "Frame 57")
        sectionView.addSubview(var_rightImageView)
        
        if self.var_stateArray[section] == "1" {
            var_rightImageView.image = UIImage(named: "Frame 58")
        }else {
            var_rightImageView.image = UIImage(named: "Frame 57")
        }
        
        let button = UIButton(type: .custom)
        button.frame = CGRectMake(0, 0, KScreenWidth, 50)
        button.backgroundColor = .clear
        button.tag = section+1
        sectionView.addSubview(button)
        
        if section == 0 {
            button.addTarget(self, action: #selector(ht_ButtonPress(_:)), for: .touchUpInside)
        }else {
            button.addTarget(self, action: #selector(ht_ButtonPress2(_:)), for: .touchUpInside)
        }
        
        return sectionView
    }
    
    
    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    }

}

extension HTClassSearchViewController {
    
    @objc func ht_ButtonPress(_ sender: UIButton) {
        
        if self.var_stateArray[sender.tag - 1] == "1" {
            
            self.var_stateArray[sender.tag - 1] = "0"
        }else {
            self.var_stateArray[sender.tag - 1] = "1"
        }
        
        self.searchTableView.reloadSections([sender.tag - 1], with: .automatic)
    }
    
    @objc func ht_ButtonPress2(_ sender: UIButton) {
        
        if self.var_stateArray[sender.tag - 1] == "1" {
            
            self.var_stateArray[sender.tag - 1] = "0"
        }else {
            self.var_stateArray[sender.tag - 1] = "1"
        }
        
        self.searchTableView.reloadSections([sender.tag - 1], with: .automatic)
    }
}

直接搞定

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子音羞,更是在濱河造成了極大的恐慌,老刑警劉巖仓犬,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件嗅绰,死亡現(xiàn)場離奇詭異,居然都是意外死亡搀继,警方通過查閱死者的電腦和手機窘面,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來叽躯,“玉大人财边,你說我怎么就攤上這事〉闫铮” “怎么了酣难?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長黑滴。 經(jīng)常有香客問我憨募,道長,這世上最難降的妖魔是什么袁辈? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任菜谣,我火速辦了婚禮,結(jié)果婚禮上晚缩,老公的妹妹穿的比我還像新娘尾膊。我一直安慰自己,他們只是感情好荞彼,可當(dāng)我...
    茶點故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布冈敛。 她就那樣靜靜地躺著,像睡著了一般鸣皂。 火紅的嫁衣襯著肌膚如雪抓谴。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天签夭,我揣著相機與錄音齐邦,去河邊找鬼椎侠。 笑死第租,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的我纪。 我是一名探鬼主播慎宾,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼丐吓,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了趟据?” 一聲冷哼從身側(cè)響起券犁,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎汹碱,沒想到半個月后粘衬,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡咳促,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年稚新,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片跪腹。...
    茶點故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡褂删,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出冲茸,到底是詐尸還是另有隱情屯阀,我是刑警寧澤,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布轴术,位于F島的核電站难衰,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏逗栽。R本人自食惡果不足惜召衔,卻給世界環(huán)境...
    茶點故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望祭陷。 院中可真熱鬧苍凛,春花似錦、人聲如沸兵志。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽想罕。三九已至悠栓,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間按价,已是汗流浹背惭适。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留楼镐,地道東北人癞志。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像框产,于是被迫代替她去往敵國和親凄杯。 傳聞我的和親對象是個殘疾皇子错洁,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內(nèi)容