0

在我的应用程序中,我coredata用来存储有关文档的详细信息

这是我的代码

-(void)writeToDatabase:(UIManagedDocument *)newdocument
    {
     Images *image =[NSEntityDescription insertNewObjectForEntityForName:@"Images" inManagedObjectContext:newdocument.managedObjectContext];  
      image.album = @"Album 1";
      image.date = @"October";
      image.share = @"Not shared yet"; }

在上面的代码中

    1.Images is the core data entity.

    2.I have inserted data in this fashion(temporarily) just to check.

我怎么能NSLog价值观?

4

1 回答 1

0

试试这个,

假设 coredata 中的属性值为 Strings

 NSLog(@"Image Name %@",image.album);
 NSLog(@"Data %@",image.date);
 NSLog(@"Share Name %@",image.share);

希望能帮助到你。

于 2012-10-16T14:34:18.043 回答