#import <OFUser.h>
Public Member Functions | |
(void) | - didGetUser: |
(void) | - didFailGetUser |
(void) | - didGetFriends:OFUser: |
(void) | - didFailGetFriendsOFUser: |
(void) | - didGetFriendsWithThisApplication:OFUser: |
(void) | - didFailGetFriendsWithThisApplicationOFUser: |
(void) | - didGetProfilePicture:OFUser: |
(void) | - didFailGetProfilePictureOFUser: |
Adopt the OFUserDelegate Protocol to receive information regarding OFUser. You must call OFUser's +(void)setDelegate: method to receive information
- (void) didFailGetFriendsOFUser: | (OFUser *) | user | [optional] |
Invoked when getFriends fails.
user | The OFUser for which we failted to get friends |
- (void) didFailGetFriendsWithThisApplicationOFUser: | (OFUser *) | user | [optional] |
Invoked when getFriendsWithThisApplication fails.
user | The OFUser for which we failed to get friends |
- (void) didFailGetProfilePictureOFUser: | (OFUser *) | user | [optional] |
Invoked when getProfilePicture fails
user | The OFUser for which the image was requested. |
- (void) didFailGetUser | [optional] |
Invoked when getUser: fails.
- (void) didGetFriends: | (NSArray *) | follows | |
OFUser: | (OFUser *) | user | |
[optional] |
Invoked when getFriends successfully completes
follows | The NSArray of OFUsers which are friends |
user | The OFUser for which the friends were requested |
- (void) didGetFriendsWithThisApplication: | (NSArray *) | follows | |
OFUser: | (OFUser *) | user | |
[optional] |
Invoked when getFriendsWithThisApplication successfully complete.
follow | The NSArray of OFUsers which are friends |
user | The OFUser for which the friends were requested. |
- (void) didGetProfilePicture: | (UIImage *) | image | |
OFUser: | (OFUser *) | user | |
[optional] |
Invoked when getProfilePicture successfully completes
image | The image requested |
user | The OFUser that this image belongs to |
- (void) didGetUser: | (OFUser *) | user | [optional] |
Invoked when getUser: successfully completes
user | The user requested |