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 = @[@"20", // @jack's first Tweet
@"510908133917487104" // our favorite Bike tweet
];
[[ APIClient]loadTweetsWithIDs:tweetIDs completion:^(NSArray *tweets, NSError *error) {
if (tweets) {
typeof(self) strongSelf = weakSelf;
strongSelf.tweets = tweets;
;
} else {
NSLog(@"Failed to load tweet: %@", );
}
}];
} else {
NSLog(@"Unable to log in as guest: %@", );
}
}];
</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: "fabric", APIClient: client)
self.init(dataSource: dataSource)
}
override required init(dataSource: TWTRTimelineDataSource) {
super.init(dataSource: dataSource)
}
required init(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
</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]