在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
注意:self.datas是数据源 就是必须先处理数据源,再进行cell的操作。
func switchButtonAction(isButtonOn:Bool){ self.tableview.beginUpdates() if isButtonOn==true{ var title2:String = "重置手势密码" self.datas.addObject(title2) var indexPaths:NSMutableArray = NSMutableArray() var indexPath:NSIndexPath = NSIndexPath(forRow:1,inSection:0) indexPaths.addObject(indexPath) self.tableview.insertRowsAtIndexPaths(indexPaths,withRowAnimation:.Top) }else{ self.datas.removeLastObject() var indexPaths:NSMutableArray = NSMutableArray() var indexPath:NSIndexPath = NSIndexPath(forRow:1,inSection:0) indexPaths.addObject(indexPath) self.tableview.deleteRowsAtIndexPaths(indexPaths,withRowAnimation:.Middle) println("false") } self.tableview.endUpdates() } |
请发表评论