菜鸟教程小白 发表于 2022-12-13 05:46:49

ios - 使用 Fabric 在 TableView iOS 中加载时间线推文


                                            <p><p>如何使用 Fabric api 显示来自特定用户时间轴的推文。
这是我的代码,我试图在数组中加载 tweety 的 id,然后在表格 View 中显示它们。</p>

<pre><code>@implementation YourTweetViewController

- (void)viewDidLoad {
;

[TwitterKit logInGuestWithCompletion:^(TWTRGuestSession *guestSession, NSError *error) {
    if (guestSession) {

      // Load tweets
      __weak typeof(self) weakSelf = self;
      NSArray *tweetIDs = @[@&#34;20&#34;, // @jack&#39;s first Tweet
                              @&#34;510908133917487104&#34; // our favorite Bike tweet
                              ];

      [[ APIClient]loadTweetsWithIDs:tweetIDs completion:^(NSArray *tweets, NSError *error) {
            if (tweets) {
                typeof(self) strongSelf = weakSelf;

                strongSelf.tweets = tweets;
                ;

            } else {
                NSLog(@&#34;Failed to load tweet: %@&#34;, );
            }
      }];
    } else {
      NSLog(@&#34;Unable to log in as guest: %@&#34;, );
    }
}];
</code></pre>

<p>}</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>Twitter Kit 1.5.0 支持时间线:</p>

<pre><code>import UIKit
import TwitterKit

class ViewController: TWTRTimelineViewController {

    convenience init() {
      let client = Twitter.sharedInstance().APIClient
      let dataSource = TWTRUserTimelineDataSource(screenName: &#34;fabric&#34;, APIClient: client)

      self.init(dataSource: dataSource)
    }

    override required init(dataSource: TWTRTimelineDataSource) {
      super.init(dataSource: dataSource)
    }

    required init(coder aDecoder: NSCoder) {
      fatalError(&#34;init(coder:) has not been implemented&#34;)
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 Fabric 在 TableView iOS 中加载时间线推文,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28992551/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28992551/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 Fabric 在 TableView iOS 中加载时间线推文