0

テーブルビューの1行にアプリケーションを作成したいのですが、サーバーからバックグラウンドでロードされるボタンの4つの画像があります。それらを直接ロードすると、テーブルビューがハングするからです。このため、セルにボタンを作成し、バックグラウンドで画像をダウンロードするためにこのコードを使用しました。

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

        static NSString *hlCellID = @"hlCellID";

        UITableViewCell *hlcell = [tableView dequeueReusableCellWithIdentifier:hlCellID];
        if(hlcell == nil) {
            hlcell =  [[[UITableViewCell alloc] 
                        initWithStyle:UITableViewCellStyleDefault reuseIdentifier:hlCellID] autorelease];
            hlcell.accessoryType = UITableViewCellAccessoryNone;
            hlcell.selectionStyle = UITableViewCellSelectionStyleNone;
        }

        int section = indexPath.section;
        NSMutableArray *sectionItems = [sections objectAtIndex:section];

        int n = [sectionItems count];

        int i = 0, j = 0, tag = 1;
        int x = 10;
        int y = 30;

        NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
        for (i = 1; i<= n ; i++) //[arr count]
        {
            for(j=1; j<=4;j++)
            {

                if (i>=n) break;
                Item *item = [sectionItems objectAtIndex:i];

                CGRect rect = CGRectMake(x = x, y = y, 68, 65); 
                UIButton *button=[[UIButton alloc] initWithFrame:rect];
                [button setFrame:rect];
                UIImage *buttonImageNormal=[UIImage imageNamed:item.image];
                [button setBackgroundImage:buttonImageNormal    forState:UIControlStateNormal];
                [button setContentMode:UIViewContentModeCenter];
                // set the image to be loaded (using the same one here but could/would be different)
                NSURL *imgURL = [NSURL URLWithString:@"http://londonwebdev.com/wp-content/uploads/2010/07/featured_home.png"];      

                // Create an array with the URL and imageView tag to 
                // reference the correct imageView in background thread.
                NSMutableArray *arr = [[NSArray alloc] initWithObjects:imgURL, [NSString stringWithFormat:@"%d", tag], nil  ];

                // Start a background thread by calling method to load the image
                [self performSelectorInBackground:@selector(loadImageInBackground:) withObject:arr];
    //          button.tag = [tagValue intValue];
                button.tag = tag;
                //NSLog(@"....tag....%d", button.tag);

                [button addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
                [hlcell.contentView addSubview:button];
                [button release];

                tag++;

                x = x + 77; 

            }
            x = 10;
            y = y + 74;
        }
        [pool release];
        return hlcell;
    }

上記のコードは完全に機能しますが、画像をダウンロードして特定のボタンに割り当てようとすると、touchupinsideアクション中にボタンタグを見つけることができますが、ボタンタグが見つかりません。

- (void) loadImageInBackground:(NSArray *)urlAndTagReference  {

    NSLog(@"Received URL for tagID: %@", urlAndTagReference);

    // Create a pool
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

    // Retrieve the remote image. Retrieve the imgURL from the passed in array
    NSData *imgData = [NSData dataWithContentsOfURL:[urlAndTagReference objectAtIndex:0]];
    UIImage *img    = [[UIImage alloc] initWithData:imgData];

    // Create an array with the URL and imageView tag to 
    // reference the correct imageView in background thread.
    NSMutableArray *arr = [[NSArray alloc] initWithObjects:img, [urlAndTagReference objectAtIndex:1], nil  ];

    // Image retrieved, call main thread method to update image, passing it the downloaded UIImage
    [self performSelectorOnMainThread:@selector(assignImageToImageView:) withObject:arr waitUntilDone:YES];

    [pool release];

}

    - (void) assignImageToImageView:(NSArray *)imgAndTagReference
    {

        // Create a pool
        NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
        int i;
        UIButton *checkView;

    //  [imagesForCategories addObject:[imgAndTagReference objectAtIndex:1]];
    //    UITableViewCell *cell = [celebCategoryTableView cellForRowAtIndexPath:[imgAndTagReference objectAtIndex:1]];
    //    UIImageView *profilePic = (UIImageView *)[cell.contentView viewWithTag:20];
    //    profilePic.image = [imgAndTagReference objectAtIndex:0];


    //  checkView.tag = [[imgAndTagReference objectAtIndex:1] intValue];
        // loop
        for (UIButton *checkView in [self.tblImage subviews] ) 
        { i++;
            NSLog(@"Checking tag: %d against passed in tag %d",checkView.tag, [[imgAndTagReference objectAtIndex:1] intValue]);
            if ([checkView tag] == [[imgAndTagReference objectAtIndex:1] intValue]) {

                if (i==35) break;
                // Found imageView from tag, update with img
    //          [checkView setImage:[imgAndTagReference objectAtIndex:0]];
                [checkView setImage:[imgAndTagReference objectAtIndex:0] forState:UIControlStateNormal];

                //set contentMode to scale aspect to fit
                checkView.contentMode = UIViewContentModeScaleAspectFit;

                //change width of frame
                CGRect frame = checkView.frame;
                frame.size.width = 80;
                checkView.frame = frame;

            }
        }   

        // release the pool
        [pool release];

        // Remove the activity indicator created in ViewDidLoad()
        [self.activityIndicator removeFromSuperview];

    }

すべてのコードは完璧に機能しますが、ここでテーブル セルのサブビューが見つからないので、テーブル セルのサブビューのサブビューfor (UIButton *checkView in [self.tblImage subviews]を見つける方法を教えてください。

私はこのようなものを作成したい plsは画像を参照してください.! その後、新しい都市が来て、セクションを変更するだけで、データの行とセルセクションに新しい画像が表示されます。

4

1 に答える 1

2

SDWebImageを使用できます

Web イメージ このライブラリは、Web からのリモート イメージをサポートする UIImageView のカテゴリを提供します。

以下を提供します。

Cocoa Touch フレームワークに Web イメージとキャッシュ管理を追加する UIImageView カテゴリ 非同期イメージ ダウンローダ 非同期メモリ + 自動キャッシュ期限切れ処理によるディスク イメージ キャッシュ 同じ URL が複数回ダウンロードされないという保証 偽の URL がダウンロードされないという保証何度でもやり直せる公演!

使うだけ

[youImageView setImageWithURL:[NSURL URLWithString:url] placeholderImage:nil options:SDWebImageRetryFailed];
于 2012-05-02T05:56:59.883 に答える