我正在使用 ABAddressBookRef 的实例来访问 ios 通讯录。最终,我想返回一个包含姓名、电话号码和缩略图的 NSDictionary。最后一个给我带来了麻烦。我可以成功地包括所有其余的。
这里只是将 UIImage作为其键添加到字典contact
中。thumbnail
UIImage* contactThumbnail = [UIImage imageWithData:(__bridge NSData *)ABPersonCopyImageDataWithFormat(person, kABPersonImageFormatThumbnail)];
NSDictionary *contact = [NSDictionary dictionaryWithObjectsAndKeys:
contactThumbnail, @"thumbnail", nil];
根据Trigger.IO Docs,我可以返回 a NSString
、或. 我将如何返回图像?我应该转换它,只需指向它,还有哪些其他选项存在?NSNumber
NSDictionary
NSArray