在UITableView中加载Plist仅10行

时间:2012-03-24 18:01:01

标签: ios cocoa-touch uitableview plist

实际上这是为了跟进我的问题 UITableView show only first row

现在我的问题是我只想在我的plist中查看10个列表。如果有11个项目,第一个项目将被第二个项目替换,依此类推,所以我的列表只有10个项目。

这是我保存给plist的代码:

NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);

NSString *documentsPath = [paths objectAtIndex:0];

NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"Data.plist"];

NSMutableArray *array = [NSMutableArray arrayWithContentsOfFile:plistPath];


if (nil == array) {
    array = [[NSMutableArray alloc] init];
}


NSMutableArray *list = [[NSMutableArray alloc]init];

[list addObject:resi.text];

[array addObject:list];

[array writeToFile:plistPath atomically: TRUE];

这是我的表视图的整个代码已被修改

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [array count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    NSArray *list = (NSArray *)[self.array objectAtIndex:indexPath.row];
    if(list && [list count] > 0) { //to check and avoid any crash
        cell.textLabel.text = [list objectAtIndex:0];
    }
    // Configure the cell...
    return cell;
}

- (void)viewWillAppear:(BOOL)animated
{
    // get paths from root direcory
    NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
    // get documents path
    NSString *documentsPath = [paths objectAtIndex:0];
    // get the path to our Data/plist file
    NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"Data.plist"];

    array = [NSMutableArray arrayWithContentsOfFile:plistPath];
    [myHistoryTable reloadData];
}

1 个答案:

答案 0 :(得分:2)

if ([array count] > 10) {
    array = [array subarrayWithRange:NSMakeRange([array count] - 10, 10)];
}

如果您不想覆盖原始数组,请创建第二个用作tableView的dataSource:

array = /* load from plist */;
if ([array count] > 10) {
    self.dataSourceArray = [array subarrayWithRange:NSMakeRange([array count] - 10, 10)];
}
else {
    self.dataSourceArray = array;
}