0
我在控制檯中得到了這個,這是什麼意思,我該如何解決它?傳統單元格佈局?
2011-07-18 22:08:31.004應用[4176:707]警告:使用由於遺留信元佈局委託執行的tableView的:accessoryTypeForRowWithIndexPath:在<設置:0x250c60 >。請移除此方法的實施並將單元格屬性accessoryType和/或editingAccessoryType設置爲移至新單元格佈局行爲。此方法將不再在未來版本中調用。
編輯:這是iOS和這裏的方法:
- (UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath
{
switch (indexPath.row) {
case 2:
return UITableViewCellAccessoryDisclosureIndicator;
break;
case 3:
return UITableViewCellAccessoryDisclosureIndicator;
break;
case 4:
return UITableViewCellAccessoryDisclosureIndicator;
break;
}
return UITableViewCellAccessoryNone;
}
我假設這是ios?請以該方法顯示代碼。試試這個鏈接http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITableViewDelegate_Protocol/DeprecationAppendix/AppendixAdeprecatedAPI.html –
我在上面添加了代碼。 –
它看起來像這個問題在這裏回答:http://stackoverflow.com/questions/3978707/warning-in-uitableview –