0

我写这篇文章是为了跟进我昨天提出的这个问题,但我还没有收到原始回复者的回复。我很乐意等待,但我的时间有限。他极大地帮助了我的 NSURLConnection 代码,我完全理解它是如何工作的,但我似乎无法让语法正确。

我无法让 handler:^ 被识别,这一行:

[self loadImageArray:urlArray handler:^(NSMutableArray *)imageArray

并且它需要获取一个填充有图像的数组(来自 loadImageArray 的 imageArray)。

- (void)loadImageArray:(NSArray *)urls handler:(void(^)( handler)

这应该从服务器异步填充一个数组(imageArray)。

如何正确设置块调用?我已经阅读了一些网站上的有关块的信息,但没有任何建议有帮助。

我再次询问了最初的回复者,但没有收到回复。

我希望编辑有所帮助。谢谢!

这是我的.h

@interface OBNSURLViewController : UIViewController
{
    NSArray *jsonArray;
    NSMutableData *theJsonData;
    IBOutlet UIView *mainView;
    __weak IBOutlet UIImageView *mainImage;
    __weak IBOutlet UILabel *mainLabel;

}
@property (nonatomic, strong) NSData *serverData;
@property (strong, nonatomic) IBOutlet UIScrollView *mainScroll;
@property (nonatomic, retain) NSMutableArray *imageArray;
@property (nonatomic, retain) NSMutableArray *urlArray;
@property (nonatomic, retain) UIImage *imageData;
@end

这是我坚持的相关代码:

- (void)parseJSONAndGetImages:(NSData *)data
{
    //initialize urlArray
    urlArray = [[NSMutableArray alloc]init];
    //parse JSON and load into jsonArray
    jsonArray = [NSJSONSerialization JSONObjectWithData:theJsonData options:nil error:nil];
    //assertion?
    assert([jsonArray isKindOfClass:[NSArray class]]);

    //Make into one liner with KVC.... Find out what KVC is

    //Code to load url's into array goes here....

    //load the images into scrollview after fetching from server
    [self loadImageArray:urlArray handler:^(NSMutableArray *)imageArray //Here is a big problem area
     {
         //work goes here....
     }];
}

- (void)loadImageArray:(NSArray *)urls handler:(void(^)( handler)//This does not want to work either. I am stuck on handler???
{ dispatch_async(0, ^{
        //imageArray = [NSMutableArray array];
        for (int y = 0; y < urlArray.count; y++)
        {
            //stuff goes here.....a
    });
        dispatch_async(dispath_get_main_queue(),^{
            handler(imageArray);
        });

}
4

1 回答 1

3

在我阅读本文时,方法语法应如下所示。如果处理程序块接受参数,则需要声明它接受。

- (void)loadImageArray:(NSArray *)urls handler:(void (^)(NSMutableArray *imageArray))handler
{
    NSMutableArray *imageArray = [NSMutableArray array];

    // Do something with the urls array to fill in entries in imageArray...

    handler(imageArray);
}

您可以这样调用该方法:

NSArray *urls = // filled in somewhere else...
[myObject loadImageArray:urls handler:^(NSArray *imageArray) { 
    NSLog(@"%@", imageArray); 
}];
于 2012-12-19T19:41:41.300 回答