我想用自己的按鈕替換UITableView編輯風格中的默認刪除按鈕。怎麼做?UITableView刪除按鈕
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:
(NSIndexPath *)indexPath
{
return @"title!";
}
這個編輯按鈕的標題。什麼有關更改按鈕的顏色.. 誰能幫我出
我想用自己的按鈕替換UITableView編輯風格中的默認刪除按鈕。怎麼做?UITableView刪除按鈕
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:
(NSIndexPath *)indexPath
{
return @"title!";
}
這個編輯按鈕的標題。什麼有關更改按鈕的顏色.. 誰能幫我出
博客的測試無效:( –
我們可以自定義默認的UITableView.But刪除按鈕,按照IOS人機界面指南如果您嘗試更改該應用,您的應用可能會被蘋果拒絕。 你可以參考http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/Introduction/Introduction.html
你可以改變刪除按鈕 – Srinivas