1
我寫了下面的代碼。我試圖讓它的功能像UIBarButtonItem
編輯項目功能,但使用UIButton
而不是因爲我有一個自定義導航欄,但我有幾個編譯錯誤。該功能應該允許在按下按鈕時進行編輯,並在再次按下時完成編輯。iOS swift 3使用UIButton代替UIBarButton編碼tableview編輯按鈕
@IBAction func edit(sender: UIButton){
if [tableView.isEditing] == YES {
[self.tableView .setEditing(false, animated: false)]
}
else{
[self.tableView .setEditing(true, animated: true)]
}
}
傻我:(。感謝這麼多。 –