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