0

iPhoneアプリではフローカバーが統合されています

Webサーバーからフローカバーに画像を読み込んでいます

画像をダウンロードするまで、画像数=0およびuiimage=nullを渡します

ここでは、viewdidloadやviewwillAppearなどのメソッドで画像をダウンロードしていません。実際には、ダウンロードと解析用に別々のスレッドを作成したので、そのビューをロードするのに時間がかかりません。

ダウンロードが完了し、画面に触れるとすべての画像が表示されますが、ダウンロード完了時に画像を表示したい

プログラムでタッチ効果なしで画像を表示するにはどうすればよいですか?

助けて提案してください

4

2 に答える 2

1

http://allseeing-i.com/ASIHTTPRequest/から ASIHTTP ダウンロード API を使用します。

次に、それをプロジェクトに統合します

次のコードで.hファイルに入れます

#import <UIKit/UIKit.h>

#import "AFOpenFlowView.h"

#import "ASINetworkQueue.h"
#import "ASIHTTPRequest.h"

@interface cfDemoViewController : UIViewController <AFOpenFlowViewDataSource, AFOpenFlowViewDelegate> {
    ASINetworkQueue *queue;
    NSArray *coverImageData;
}
@property (nonatomic, retain) NSArray *arX;

- (void)imageDidLoad:(NSArray *)arguments;
-(void)requestForImage:(NSUInteger)index;

@end

そして次のコードを.mファイルに入れます

#import "UIImageExtras.h"

#import "cfDemoViewController.h"

#import "UIImageExtras.h"


@implementation cfDemoViewController

@synthesize arX = _arX;

- (void)dealloc
{
    [super dealloc];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSArray *ar=[NSArray arrayWithObjects:@"http://google.com/report_image/2/17",
                 @"http://google.com/report_image/2/16",
                 @"http://google.com/report_image/2/15",
                 @"http://google.com/report_image/2/14",
                 @"http://google.com/report_image/2/13",
                 @"http://google.com/report_image/2/12",
                 @"http://google.com/report_image/2/11",
                 @"http://google.com/report_image/2/10",
                 @"http://google.com/report_image/2/9",
                 @"http://google.com/report_image/2/8",nil];

    self.arX=ar;

    queue=[[ASINetworkQueue alloc] init];

    for (int i=0; i < [ar count]; i++) {
        [(AFOpenFlowView *)self.view setImage:[UIImage imageNamed:@"default.png"] forIndex:i];
    }

    [self requestForImage:0];

    [(AFOpenFlowView *)self.view setNumberOfImages:10]; 
}

-(void)requestForImage:(NSUInteger)index{
    if(index>=[self.arX count]) return;
    ASIHTTPRequest *req=[ASIHTTPRequest requestWithURL:[NSURL URLWithString:[self.arX objectAtIndex:index]]];
    [req setDidFinishSelector:@selector(requestDone:)];
    [req setDidFailSelector:@selector(requestWentWrong:)];
    [req setUsername:[NSString stringWithFormat:@"%i",index]];
    [req setDelegate:self];
    [queue addOperation:req];   
    [queue go];
}

- (void)requestDone:(ASIHTTPRequest *)request
{   
    NSUInteger index=[[request username] intValue]; 
    UIImage *img=[UIImage imageWithData:[request responseData]];
    img=[img cropCenterAndScaleImageToSize:CGSizeMake(225, 225)];
    [(AFOpenFlowView*)self.view setImage:img forIndex:index];

    [self requestForImage:index+1];
     // here all requests are downloaded and you want display any msg to user that code goes here.

}

- (void)requestWentWrong:(ASIHTTPRequest *)request
{
//  NSError *error = [request error];
    NSUInteger index=[[request username] intValue];
    [self requestForImage:index+1];
}


- (void)imageDidLoad:(NSArray *)arguments {
    UIImage *loadedImage = (UIImage *)[arguments objectAtIndex:0];
    NSNumber *imageIndex = (NSNumber *)[arguments objectAtIndex:1];

    // Only resize our images if they are coming from Flickr (samples are already scaled).
    // Resize the image on the main thread (UIKit is not thread safe).
    loadedImage = [loadedImage cropCenterAndScaleImageToSize:CGSizeMake(225, 225)];

    [(AFOpenFlowView *)self.view setImage:loadedImage forIndex:[imageIndex intValue]];
}

- (UIImage *)defaultImage {
    return [UIImage imageNamed:@"default.png"];
}

- (void)openFlowView:(AFOpenFlowView *)openFlowView requestImageForIndex:(int)index{
    NSLog(@"request for index - %d",index);
}

- (void)openFlowView:(AFOpenFlowView *)openFlowView selectionDidChange:(int)index {
    NSLog(@" Hello - Cover Flow selection did change to %d", index);
}


- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
//    return (interfaceOrientation == UIInterfaceOrientationPortrait);
    return YES;
}

@end

また、ここからコードをダウンロードしてください。

于 2011-08-19T10:46:02.700 に答える
1

これにより、ダウンロードの終了を認識することができます。NSURLConnection のダウンロードは非同期であるため、通知を使用してダウンロードが完了したことをマークし、メソッドを開始できます。

NSNotifications のオブザーバーを追加します。

[[NSNotificationCenter defaultCenter] addObserver:self 
      selector:@selector(some_method:) name:@"some_name" object:nil];

ダウンロードが完了したら、通知を送信します。

- (void) connectionDidFinishLoading:(NSURLConnection *)connection {
    [[NSNotificationCenter defaultCenter] 
            postNotificationName:@"some_name" object:nil];
}

そして、それはメソッドを開始します:

-(void)some_method { 
    // add downloaded image to set or smth
}
于 2011-08-19T10:17:12.293 に答える