ios how can user cancel facebook sign in?
Posted
by
Jackson
on Stack Overflow
See other posts from Stack Overflow
or by Jackson
Published on 2012-06-28T14:47:43Z
Indexed on
2012/10/23
11:01 UTC
Read the original article
Hit count: 219
When a user gets to this screen, there is no way to cancel out of it. What can I do?
To get this view in the first place I am running:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
vid, @"link",
vid, @"source",
vid, @"picture",
@"My Place", @"name",
@"YouTube Presentation", @"caption",
title, @"description",
@"Enjoy this Video", @"message",
nil];
[app.facebook dialog:@"stream.publish"
andParams:params
andDelegate:self];
© Stack Overflow or respective owner