我在我的申请书中有一本地址书,该书由json网站填写。 如果在我的网站上增加一名新人,此人就会在下一次发射的书目中添加。 如果我更新了我网站上的人名,那么我的工作是完美的,但如果我给现有人增添新的形象,那么,它就在重载后仍显示出了由Aglus产生的旧的违约形象。 如果我对情况进行汇编的话。 是否有线索图?
我尝试如下:
BOOL imgBool = ABPersonHasImageData(aContact); -> false
以及
ABPersonRemoveImageData(aContact, &anError); -> false because no picture in AB
我也这样说:
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[[[self.profsInSection objectAtIndex:indexPath.section] objectAtIndex:indexPath.row] bildUrl]]]];
NSData *picData = UIImageJPEGRepresentation(image, 0.9f);
[...]
ABPersonSetImageData(aContact, (CFDataRef)picData, nil);
There are no Errors, it just saves the last picture 以及ignores new pictures... :( Any ideas?