我目前正在开发一款应用,我只想加载包含media_url的推文。我已经尝试阻止它将推文加载到tableView中,但是由于显而易见的原因导致大量空白推文。
我用的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
id tweet = [self.timeline objectAtIndex:[indexPath row]];
NSString *example = [NSString stringWithFormat:@"%@",[tweet valueForKeyPath:@"entities.media.media_url"]];
NSLog(@"%@", example);
if ([example isEqual: @"(null)"] ) {
} else {
cell.textLabel.text = [tweet valueForKeyPath:@"text"];
cell.detailTextLabel.text = [tweet valueForKeyPath:@"user.name"];
}
return cell;
}
所以现在我正在寻找一种替代方法,它只能加载具有media_url的推文,并将它们按照它们出现的顺序排列。我正在使用NSJSONSerialization来解析我的数据。
我用过的代码:
- (void)fetchData
{
[_refreshHeaderView refreshLastUpdatedDate];
NSURL *url = [NSURL URLWithString:@"https://api.twitter.com/1/statuses/home_timeline.json?count=199&include_entities=true"];
TWRequest *request = [[TWRequest alloc] initWithURL:url
parameters:nil
requestMethod:TWRequestMethodGET];
[request setAccount:self.account];
[request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
if ([urlResponse statusCode] == 200) {
NSError *jsonError = nil;
id jsonResult = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:&jsonError];
if (jsonResult != nil) {
self.timeline = jsonResult;
dispatch_sync(dispatch_get_main_queue(), ^{
[self.tableView reloadData];
});
}
else {
NSString *message = [NSString stringWithFormat:@"Could not parse your timeline: %@", [jsonError localizedDescription]];
[[[UIAlertView alloc] initWithTitle:@"Error"
message:message
delegate:nil
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil] show];
}
}
}];
[self performSelector:@selector(doneLoadingTableViewData) withObject:nil afterDelay:1.0];
}
所以我想知道无论如何我可以将数据添加到时间轴中,只包含那些包含media_url的推文,或者是否有更好的方法可以使用不同的方法。
感谢。
答案 0 :(得分:1)
也许尝试用这样的东西来检查推文是否包含媒体网址:
if([tweet valueForKey:@"entities.media.media_url"] == [NSNull null])