2011-07-19 98 views
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; 
} 
+0

我假設這是ios?請以該方法顯示代碼。試試這個鏈接http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITableViewDelegate_Protocol/DeprecationAppendix/AppendixAdeprecatedAPI.html –

+0

我在上面添加了代碼。 –

+0

它看起來像這個問題在這裏回答:http://stackoverflow.com/questions/3978707/warning-in-uitableview –

回答

3

這意味着,要實現一個方法已過時,並且系統正在使用,因爲它的向後兼容模式。

您應該完全按照消息的建議進行操作:刪除tableView:accessoryTypeForRowWithIndexPath:的實施,而是將相應的值分配給accessoryType和/或editingAccessoryType屬性。