2015-04-10 18 views

cevap

12

spesifik sıralar halinde düğmeye silmek de sistem tokatlamak göstermek için iki temsilci yöntemleri kullanıyorum:

func tableView(tableView: UITableView, titleForDeleteConfirmationButtonForRowAtIndexPath indexPath: NSIndexPath) -> String! { 
     return "your string" //or customize for each indexPath 
} 
0

titleForDeleteConfirmationButtonForRowAt temsilci şimdiki UITableViewDelegate, tablo görünümündeki "Sil" metnini değiştirmek için kullanılabilir.

func tableView(_ tableView: UITableView, titleForDeleteConfirmationButtonForRowAt indexPath: IndexPath) -> String? { 
    return NSLocalizedString("erase".localized, comment: "") 
} 
İlgili konular