i`m create a simple app(Timeline of Twitter). I can already do the data appear in the tableview. up here alright, but the pictures leave the Tableview very slow.
Code of Cell:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{ static NSString *CellIdentifier = @"Cell";
TweetCelll * cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
//[self configureCell:cell atIndexPath:indexPath];
tt = [tweets objectAtIndex:indexPath.row];
iMagens = [tweets objectAtIndex:indexPath.row];
if (cell == nil) {
cell = [[TweetCelll alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSString *text = [tt objectForKey:@"text"];
NSString *username = [[tt objectForKey:@"user"]objectForKey:@"name"];
NSString *Screen = [[tt objectForKey:@"user"]objectForKey:@"screen_name"];
NSString *arro = [[NSString alloc] initWithFormat:@"@%@",Screen];
cell.TextUse.text = text;
cell.ScreenNam.text = arro;
cell.LabelNam.text = username;
// [cell showImageURL:url];
NSString *imageUrl = [[iMagens objectForKey:@"user"] objectForKey:@"profile_image_url_https"];
// NSLog(@"%@",imageUrl);
NSMutableString *string1 = [NSMutableString stringWithString:imageUrl];
[string1 replaceCharactersInRange: [string1 rangeOfString: @"_normal"] withString: @"_bigger"];
// NSLog (@"string2 = %@", string1);
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:string1]];
UIImage *ima = [UIImage imageWithData:data];
cell.ImageUser.image = ima;
////////////
return cell;
}
but I got through this problem by doing this(on images):
NSString *UrlString = [NSString stringWithFormat:@"http://api.twitter.com/1/users/profile_image/%@",[status valueForKeyPath:@"user.screen_name"]];
statusCell.imageCellTL.layer.masksToBounds = YES;
statusCell.imageCellTL.layer.cornerRadius = 5.0;
statusCell.imageCellTL.image = [UIImage imageNamed:@"....."];
if ( UrlString ) {
UIImage *image = [self.imageCache objectForKey:UrlString];
if ( image ) {
statusCell.imageCellTL.image = image;
} else {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
//
NSURL *url = [NSURL URLWithString:UrlString];
NSData *imageData = [NSData dataWithContentsOfURL:url];
dispatch_async(dispatch_get_main_queue(), ^{
//
UIImage *image = [UIImage imageWithData:imageData];
statusCell.imageCellTL.image = image;
[statusCell setNeedsLayout];
[self.imageCache setObject:image forKey:UrlString];
});
});
}
Scroll not slowed \o/.....But if you move the scroll very fast some pictures out of order.