0
我正在開發一個iPhone應用程序。明智地排序uitableview
在我想說明排序上的日期字段的UITableView數據的應用程序:
假設我有一個字段的名字,出生日期,電話號碼等Person對象
現在我人陣我在日期字段上排序該數組。
現在我不明白如何處理這兩種方法;
(UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
(NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section
即
如何計算日期明智的對象,並確定?
我需要多個部分。假設部分人員(即16-11-2009)。你能用一點代碼解釋這個嗎? – harshalb 2009-11-17 12:12:58
製作一個名爲'sections'的'NSMutableArray'。 'sections'的每個元素都是另一個包含'Person'實例的'NSMutableArray'。你只需要將你的'Person'集合分解到這些部分。 一旦你有了,你可以調用'[sections objectAtIndex:indexPath.section]'來爲單個索引獲取'Person'的'NSMutableArray'。 一旦你有*那*,你基本上有和上面相同的代碼,除了你用'indexPath.section'和'indexPath.row'獲取'Person'實例,而不是'indexPath.row' 。 – 2009-11-17 12:18:36