0
/**
 * When XMPPvCardAvatarModule is included in the framework, the roster will integrate    with it.
 * Implement this method to provide support for storing the downloaded user photos.
**/
#if TARGET_OS_IPHONE
- (void)setPhoto:(UIImage *)image forUserWithJID:(XMPPJID *)jid xmppStream:(XMPPStream    *)stream;
#else
- (void)setPhoto:(NSImage *)image forUserWithJID:(XMPPJID *)jid xmppStream:(XMPPStream    *)stream;
#endif

在 XMPPFramework 我有这样的评论,告诉我实现一些方法来存储用户的照片。我应该如何实现这个方法?

4

1 回答 1

0

我得到它。我没有vCard,所以我不能上传照片。

如果 vCard 可用,则此方法可以正常工作。

于 2013-09-25T14:02:53.280 回答