在我的应用中,我使用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
价值观?
答案 0 :(得分:0)
试试这个,
假设coredata中的属性值是字符串
NSLog(@"Image Name %@",image.album);
NSLog(@"Data %@",image.date);
NSLog(@"Share Name %@",image.share);
希望它有所帮助。