如何NSLog核心数据库的内容

时间:2012-10-16 13:57:54

标签: iphone core-data

在我的应用中,我使用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价值观?

1 个答案:

答案 0 :(得分:0)

试试这个,

假设coredata中的属性值是字符串

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

希望它有所帮助。