iphone - post image to facebook friend's wall -


im using uiactivityviewcontroller share image social network. need post image friend's wall. possible post image friend's wall using uiactivityviewcontroller.

with nsdata, can add image uiactivityviewcontroller. try below one.

nsstring *text = @"your text goes here";  nsdata *da = uiimagejpegrepresentation([uiimage imagenamed:@"icon.png"], 1.0);  nsarray * activityitems = @[text,da];  uiactivityviewcontroller *activityvc = [[uiactivityviewcontroller alloc] initwithactivityitems:activityitems applicationactivities:[nsarray arraywithobjects:nil]]; activityvc.excludedactivitytypes = @[uiactivitytypeposttoweibo]; //or whichever don't need  [activityvc setcompletionhandler:^(nsstring *activitytype, bool completed) {  }]; [self presentviewcontroller:activityvc animated:yes completion:nil]; 

Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -