【发布时间】:2013-09-10 15:19:25
【问题描述】:
/**
* 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 中,我有这样的评论,告诉我实现一些方法来存储用户照片。我应该如何实现这个方法?
【问题讨论】:
标签: objective-c methods xmppframework