gpt4 book ai didi

iphone - iPhone 中的推特

转载 作者:行者123 更新时间:2023-11-29 13:46:29 25 4
gpt4 key购买 nike

我正在集成 twitter api(OAuth+MGTwitter)。我能够登录并获取我关注的所有人的所有推文。现在我只想从一个帐户(人)获取推文。我怎样才能得到某人的所有推文?

描述:假设我只想查看@XXX_123 的推文。

代码:`

#pragma mark UITableViewDataSource Methods 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

return [tweets count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

NSString *identifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];

if(!cell) {

cell = [[UITableViewCell alloc] initWithStyle:UITableViewStyleGrouped reuseIdentifier:identifier];
//[cell setBackgroundColor:[UIColor clearColor]];
}

[cell.textLabel setNumberOfLines:7];
[cell.textLabel setText:[(Tweet*)[tweets objectAtIndex:indexPath.row] tweet]];

return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

return 150;
}

`

问候!!

最佳答案

您必须使用我的 MGTwitter 提供的各种方法来获得各种结果。用于获取特定人的推文

twitterEngine = [[MGTwitterEngine alloc] initWithDelegate:self];<br/>
[twitterEngine getUserTimelineFor:username sinceID:0 startingAtPage:0 count:15];

其中 username 是您要检索其推文的用户

关于iphone - iPhone 中的推特,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7188077/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com