我是 xcode 的新手。我希望有人会教我更多的xcode。
我现在正在学习核心数据,据我所知,我可以使用 uibutton 从 uitextfield 保存我的数据。这是我的代码。
- (IBAction)button1:(id)sender
{
TestSaveDataAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [appDelegate managedObjectContext];
Highscore *record = [NSEntityDescription insertNewObjectForEntityForName:@"Highscore" inManagedObjectContext:context];
record.highscore1 = textField.text;
NSLog(@"Saved for %@", textField.text);
NSError *error;
if (![context save:&error])
{
NSLog(@"Error");
}
现在我有一个 UILabel 调用标签和一个 button2 旁边。当 button2 被按下时,我如何在我的标签中加载我的数据?请教我。
我已经这样写了,但我不知道如何将它放在我的标签中。我发现的任何教程都只将它放在 tableview 中。我不想把它放在 tableview 中,我只想让我的数据显示在我的标签中。
- (IBAction)button2:(id)sender
{
TestSaveDataAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [appDelegate managedObjectContext];
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Highscore" inManagedObjectContext:context];
[request setEntity:entity];
NSError *error;
if (![context save:&error])
{
NSLog(@"Error");
}
}