如何在swift iOS中与facebook分享图片+文字?

时间:2014-10-28 06:52:23

标签: ios facebook swift sharing

我正在用 iOS 的快速语言编写 facebook互动代码。我已经转换了登录和其他代码,但坚持使用共享方法。

我无法在swift中找到requestWithGraphPath类的FBRequest方法。如果有人知道这个,那么请在这里帮助我。我在网上搜索了解决方案,但未能找到。

这是 Objective-C

中的共享代码
 FBRequest *req=[FBRequest requestWithGraphPath:@"me/feed" parameters:params HTTPMethod:@"POST"];
    [req startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error{
        if (!error) {
            // Sucess! Include your code to handle the results here                
            NSLog(@"Successful sharing");
        } else {
            // An error occurred, we need to handle the error
            // See: https://developers.facebook.com/docs/ios/errors
            NSLog(@"Error while sharing data");
        }
    }];

提前谢谢。

0 个答案:

没有答案