almost 10 years ago
Hello reader's !
If you want to setup Facebook App Invites of an iOS app then follow these steps.
In View controller , add a button and write this code to send app invites to Facebook friends as follows :-
- -(IBAction)shareApplinks:(id)sender {
- FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init];
- content.appLinkURL = [NSURL URLWithString:@"paste here Facebook _appInviteURL"];
- content.previewImageURL = [NSURL URLWithString:@"paste here your app image (logo) url"];
- [FBSDKAppInviteDialog showWithContent:content
- delegate:self];
- }
-(IBAction)shareApplinks:(id)sender { FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init]; content.appLinkURL = [NSURL URLWithString:@"paste here Facebook _appInviteURL"]; content.previewImageURL = [NSURL URLWithString:@"paste here your app image (logo) url"]; [FBSDKAppInviteDialog showWithContent:content delegate:self]; }
Now send app invites to friends and enjoy ...
0 Comment(s)