Facebook 和 Twitter 分享按钮停止工作 [关闭]
Posted
技术标签:
【中文标题】Facebook 和 Twitter 分享按钮停止工作 [关闭]【英文标题】:Facebook & Twitter share button stopped working [closed] 【发布时间】:2013-02-21 20:37:24 【问题描述】:最近我让它工作了,但现在它突然停止了。按钮被按下时什么都不做。代码甚至没有给出断点或错误。怎么了?
Download Project (3.2mb)
- (IBAction)ShareFB
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
slComposeViewController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[slComposeViewController addImage:[UIImage imageNamed:@"logo-carrito.png"]];
[slComposeViewController addURL:[NSURL URLWithString:@"http://www.google.com"]];
[self presentViewController:slComposeViewController animated:YES completion:NULL];
else
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No FB Account" message:@"There are no FB account registered. Configure one" delegate:nil cancelButtonTitle:@"Dissmiss" otherButtonTitles:nil];
[alert show];
- (IBAction)ShareTW
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
slComposeViewController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
[slComposeViewController addImage:[UIImage imageNamed:@"logo-carito.png"]];
[slComposeViewController addURL:[NSURL URLWithString:@"http://www.google.com"]];
[self presentViewController:slComposeViewController animated:YES completion:NULL];
else
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No TW Account" message:@"There are no TW accounts registered. Configure one." delegate:nil cancelButtonTitle:@"Dismiss" otherButtonTitles:nil];
[alert show];
【问题讨论】:
所以您希望我们为您调试代码? 【参考方案1】:在您的故事板中,您的第一个场景的类设置为ViewController
,但实际上它显然应该是您项目中包含的类之一,例如Tab1_ViewController
.
【讨论】:
这行得通。谢谢你!你愿意和我语音聊天来做一些其他的东西吗? @AlexPjz 随时在 S.O. 上发布其他问题。如果您没有得到足够的答案(和/或我碰巧没有看到发布的问题),请在此处添加评论,我会努力查看。以上是关于Facebook 和 Twitter 分享按钮停止工作 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
Facebook 和 Twitter 在 android 中的集成