BY вызывая "[facebook requestWithGraphPath: @" me / picture "andParams: nil andHttpMethod: @" GET "andDelegate: self];"Вы должны создать объект FBRequest.
Вы можете настроить FBRequest, добавить новый typedef
typedef enum
{
...
currentactionProfilePictureAccess,
...
}currentaction;
@interface FBRequest:<superclass>
{
.....
currentaction currentactiontype;
}
.....
@property(nonatiomic,asign) currentaction currentactiontype;
....
@ end
и синтезировать его в реализации.
И при создании запросаукажите тип запроса (currenttactiontype), который вы делаете.
Когда результат приходит в запросе "- (void): запрос (FBRequest *) didLoad: (id) результат Проверка типа запроса и процесса.
if(request.currentactiontype==currentactionProfilePictureAccess)
{
//call what ever you want.
}