Note that there are some explanatory texts on larger screens.

plurals
  1. POcan we make this say "Just Now 'AppName' via iOS" in facebook while posting the image
    primarykey
    data
    text
    <p>I am working on facebook ios6. when i am posting the image it displays like below image. <img src="https://i.stack.imgur.com/Ycfqb.png" alt="enter image description here"></p> <p>i want to include my "AppName"</p> <p>My code is </p> <pre><code> -(void)facebookbtnclicked { ACAccountStore *accountStore = [[ACAccountStore alloc] init]; ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook]; ACAccount *account = [[ACAccount alloc] initWithAccountType:accountType]; NSLog(@"%@, %@", account.username, account.description); { SLComposeViewController *controller = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook]; SLComposeViewControllerCompletionHandler myBlock = ^(SLComposeViewControllerResult result){ if (result == SLComposeViewControllerResultCancelled) { NSLog(@"Cancelled"); } else { NSLog(@"Done"); UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Done" message:@"Image Posted Successfully, Please Create an other Tattoo" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]; UINavigationController *navController=self.navigationController; [navController popViewControllerAnimated:YES]; [alert show]; } [controller dismissViewControllerAnimated:YES completion:Nil]; }; controller.completionHandler =myBlock; [controller setInitialText:self.textMsg]; [controller addImage:appDelegate.shareImage];//This image i am posting [self presentViewController:controller animated:YES completion:Nil]; } } </code></pre> <p>Give me any suggestions</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload