0

有人指出这是一个重复的问题,是的,部分是的,我按照另一篇文章中的建议添加了 URLScheme,如下所示,同样建议我忘记添加到我的另一个目标,所以我做了,URL twitter-13145245245624 现在发生的情况是我的应用程序将用户重定向到他们的 Twitter 应用程序并请求允许我的应用程序使用他们的信息,一旦点击确定按钮,用户就会被重定向回我的应用程序,但仍然没有 Composer 填充 View to Tweet。还是一头雾水。感谢所有的帮助。

 let composer = TWTRComposer()

    composer.setText("just setting up my Twitter Kit")
    composer.setImage(UIImage(named: "twitterkit"))

    // Called from a UIViewController
    composer.show(from: self) { (result) in
        if (result == .done) {
        print("Successfully composed Tweet")
        } else {
        print("Cancelled composing")
        }
    }

这是我的 info.plist,但是,我在 Facebook 上发帖没有问题。有什么想法吗?

 <key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>twitterkit-xxxxxxxxxx</string>
            <string>fbxxxxxx</string>
        </array>
    </dict>
</array>
<key>LSApplicationQueriesSchemes</key>
<array>
    <string>twitter</string>
    <string>twitterauth</string>
</array>

问候 J

4

1 回答 1

0

我上述问题的问题是我在 AppDelegate 中没有以下方法。这解决了我的问题。

-(BOOL)application:(UIApplication*)app openURL:(nonnull NSURL *)url options:(nonnull NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options{    
return  [[TWTRTwitter sharedInstance]application:app openURL:url options:options]; 

}

于 2018-03-28T01:06:52.800 回答