You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SHKItem *shareItem = [SHKItem image:mapImage title:text];
[shareItem setText:text];
id sharer = NSClassFromString(@"SHKFacebook");
[sharer performSelector:@selector(shareItem:) withObject:shareItem];
}
It works on simulator and my iPhone , but when I use it with testflight noting happens.
The text was updated successfully, but these errors were encountered:
I have some code like this:
(IBAction)shareAction:(id)sender {
NSString *text = [FacebookMessage generateFacebookMessage];
UIImage *mapImage = [self.map renderToImage];
SHKItem *shareItem = [SHKItem image:mapImage title:text];
[shareItem setText:text];
id sharer = NSClassFromString(@"SHKFacebook");
[sharer performSelector:@selector(shareItem:) withObject:shareItem];
}
It works on simulator and my iPhone , but when I use it with testflight noting happens.
The text was updated successfully, but these errors were encountered: