簡體   English   中英

在使用核心數據時,在UITableView的頂部添加一個新行

[英]add a new row to the top of UITableView while using core data

我有一個文本字段,我輸入一個值並保存並在tableView中檢索它們。 保存的最后一項顯示在表格視圖的底部。 但我希望它顯示在表格視圖的頂部。

我嘗試了以下代碼但失敗了。

- (void)viewDidLoad
{

   CoreDataOneAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
   NSManagedObjectContext *context = [appDelegate managedObjectContext];
   NSEntityDescription *entityDesc = 
   [NSEntityDescription entityForName:@"Employee" inManagedObjectContext:context];
   NSFetchRequest *request = [[NSFetchRequest alloc] init];
   [request setEntity:entityDesc];
    NSError *error;
    objects = [[context executeFetchRequest:request error:&error]retain];
    [request release];
    [super viewDidLoad];
}



-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return  [objects count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    labelOne = [[UILabel alloc]initWithFrame:CGRectMake(5, 11, 110, 21)];
    labelTwo = [[UILabel alloc]initWithFrame:CGRectMake(230, 11, 70, 21)];

    static NSString *cellIdentifier = @"CellIdentifier";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier]autorelease];
    }

    [cell.contentView addSubview:labelTwo];
    [cell.contentView addSubview:labelOne];

    NSManagedObject *matches = nil;
    matches = [objects objectAtIndex:indexPath.row];

    labelOne.text = [matches valueForKey:@"name"];
    labelTwo.text = [matches valueForKey:@"amount"];

    NSArray *index = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:0 inSection:0]];
    [tableView insertRowsAtIndexPaths:index withRowAnimation:YES];

    return cell;
}

//保存

-(IBAction)save:(id)sender
{
CoreDataOneAppDelegate  *appDelegate = 
[[UIApplication sharedApplication] delegate];

NSManagedObjectContext *context = 
[appDelegate managedObjectContext];
NSManagedObject *newContact;
newContact = [NSEntityDescription
              insertNewObjectForEntityForName:@"Employee"
              inManagedObjectContext:context];
[newContact setValue:name.text forKey:@"name"];
[newContact setValue:amount.text forKey:@"amount"];
name.text = @"";
amount.text = @"";
//label
status.text = @"saved";
NSError *error;
[context save:&error];
}

我假設你在某處[objects addObject:newEntry] 將其更改為[objects insertObject:newEntry atIndex:0]

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM