Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Here's a post I wrote on the subject, see if it helps you: stavash.wordpress.com/2012/12/14/… – Stavash Jan 17 at 20:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.