表视图与日期范围的部分

时间:2012-08-14 09:41:35

标签: objective-c datetime nsmutablearray nsarray

我从表格视图中显示以下数据

// declaration of Array
 NSMutableArray *listOfItems;

//Initialize the array.
listOfItems = [[NSMutableArray alloc] init];

// Adding Item to array
[listOfItems addObject:[object description]];

// Populating tableView with Array
NSString *cellValue = [listOfItems objectAtIndex:[indexPath row]]; 

显示:

  • 2012-08-10 07:52:39 +0000

    2012-08-10 07:56:46 +0000

    2012-08-10 07:57:01 +0000

    2012-08-13 02:14:02 +0000

    2012-08-13 02:20:29 +0000

    2012-08-10 07:56:46 +0000

    2012-08-14 08:44:33 +0000

现在我需要一个分段表视图,以便最终结果应该像这样

  • 标题

    • 2012-08-10

    • 2012-08-10 07:52:39 +0000
    • 2012-08-10 07:56:46 +0000
    • 2012-08-10 07:57:01 +0000
    • 2012-08-10 07:56:46 +0000
  • 标题

    • 2012-08-13

    • 2012-08-13 02:14:02 +0000
    • 2012-08-13 02:20:29 +0000

    • Header 2012-08-14

    • 2012-08-14 08:44:33 +0000

即每天的标题和每个部分中每天的不同值 我怎么能这样做?

0 个答案:

没有答案