0

我在我的 iPhone 应用程序中使用 sharekit 2.0。我已安装并遵循https://github.com/ShareKit/ShareKit/wiki/Installing-sharekit上的所有说明。尽管有如下警告(不是错误),但应用程序构建良好

ld: warning: directory not found for option '-L/Users/ilaagarwal/Downloads/Thomas/puzzle game with friends/Twitter+OAuth/Libraries & Headers'

我做了一个按钮,按下按钮后会发生以下动作

- (IBAction)OnShareFacebook:(id)sender {
SHKItem *item = [SHKItem text:@"message to share"];
NSLog (@"Button Pressed");
} 

该应用程序在尝试执行 SHKitem 行时崩溃。如果我评论该行,则操作执行良好,没有任何错误。任何线索为什么它在使用 SHKItem 时崩溃以及我如何修复它。

4

1 回答 1

0

在 ShareKit 的配置文件中,我在 DefaultSHKConfigurator.m 中添加了密钥,但它不起作用。我必须完全按照链接https://github.com/ShareKit/ShareKit/wiki/Configuration中的说明进行操作,然后应用程序没有崩溃,因此问题解决了。

于 2012-06-08T11:49:50.530 回答