Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RT,我想给后面添加的联系人设置默认图片。我可以使用公共 API 执行此操作吗?
是的,您可以稍后添加照片。这是一个基于 URL 加载照片的代码片段。
image = [[NSImage alloc] initWithContentsOfURL:[NSURL URLWithString:url]]; if (image && [image isValid]) { [abPerson setImageData:[image TIFFRepresentation]]; }
通讯簿没有“默认”图片的概念,但您当然可以使用此机制为没有自己图片的任何联系人加载相同的图片。