我想要创建一个简单的func,它将验证我的部分,并查看在我的部分中是否至少有一个单元格被选中,以便它返回我的信息。
就像这样:
func checkSections () ->Bool {
let array : [IndexPath] = self.selectedIndexPaths.copy() as! [IndexPath];
for indexPath: IndexPath in array {
let SectionString : String? = self.sectionHeaderTitleArray[indexPath.section] // this will return the names of the selected sections but no way to use that
// check all the sections and see if they contain a selected cell
}
}
我知道这是不完整的,但我不知道如何开始创建它,我希望至少能找到一些帮助来启动这个功能。请理解,我已经5年多没有接触过任何与编程相关的东西了,而且我从来就不是一个专业人士。
试试这个:
class CheckableTableView: UITableView {
func checkSections() -> Bool {
return indexPathsForSelectedRows != nil
}
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。