如何让UIPageViewController知道我的异步下载何时完成?

时间:2013-12-22 21:28:49

标签: ios cocoa-touch nsurlconnection uipageviewcontroller

我目前在我的项目中设置了一个UIPageViewController,几乎与默认的基于页面的应用程序模板一样。

但是,在我的ModelController的init方法中,我使用NSURLConnection将数据异步下载到应该在PageViewController上显示的数组(图像)中。

这意味着当我的根视图控制器进入并启动一个起始视图控制器时,资源可能还没有下载,然后模型控制器从一个空数组中取出东西,这会导致应用程序崩溃。

如何实现在PageView中显示图像的安全方式?我正在考虑使用带有活动指示器的空视图控制器作为起始视图控制器,但我不知道如何让模型控制器知道下载何时完成,这样我就可以用图像更新视图。

我的根视图控制器(这是uipageviewcontroller委托)

@interface CSAPromoViewController ()
@property (readonly, strong, nonatomic) CSAPromoModelController *modelController;
@end

@implementation CSAPromoViewController

@synthesize modelController = _modelController;

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.pageViewController = [[UIPageViewController alloc] initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal options:nil];
    self.pageViewController.delegate = self;

    CSAPageDataViewController *startingViewController = [self.modelController viewControllerAtIndex:0 storyboard:self.storyboard];
    NSArray *viewControllers = @[startingViewController];
    [self.pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];

    self.pageViewController.dataSource = self.modelController;

    [self addChildViewController:self.pageViewController];
    [self.view addSubview:self.pageViewController.view];

    //set page view controller's bounds
    CGRect pageViewRect = self.view.bounds;
    self.pageViewController.view.frame = pageViewRect;

    [self.pageViewController didMoveToParentViewController:self];

    self.view.gestureRecognizers = self.pageViewController.gestureRecognizers;

}

我的模型控制器(这是数据源)

@interface CSAPromoModelController()
@property (readonly, strong, nonatomic) NSArray *promosArray;
@end

@implementation CSAPromoModelController
-(id)init
{
    self = [super init];
    if (self) {
        NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://blah.com"]
                                             cachePolicy:NSURLRequestUseProtocolCachePolicy
                                         timeoutInterval:60.0];
        [NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
            _promosArray = [self parseJSON:data];
        }];
    }
    return self;
}

- (CSAPageDataViewController *)viewControllerAtIndex:(NSUInteger)index storyboard:(UIStoryboard *)storyboard
{
    // Return the data view controller for the given index.
    if (([self.promosArray count] == 0) || (index >= [self.promosArray count] / 2)) {
        return nil;
    }

    // Create a new view controller and pass suitable data.
    CSAPageDataViewController *dataViewController = [storyboard instantiateViewControllerWithIdentifier:@"CSAPageDataViewController"];
    dataViewController.promoOne = [self.promosArray objectAtIndex:index * 2];
    dataViewController.promoTwo = [self.promosArray objectAtIndex:(index * 2) + 1];
    return dataViewController;
}

数据视图控制器

@implementation CSAPageDataViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
// Do any additional setup after loading the view.
    self.promoLabelTop.text = [self.promoOne name];
    self.promoImageTop.image = [self.promoOne image];
    self.promoLabelBottom.text = [self.promoTwo name];
    self.promoImageBottom.image = [self.promoTwo image];
}

1 个答案:

答案 0 :(得分:1)

您尝试解决的问题是异步问题。但是,您的方法是解决同步问题。

例如,您的类CSAPromoModelController本质上是异步的。这是因为它的init方法调用异步方法,因此你的类被异步“感染”。

您可以考虑重新设计,其中类CSAPromoModelController成为NSOperation的子类,并带有完整的处理程序,例如CSAPromoModelOperation最终结果是图像数组。 imageArray 成为CSAPromoViewController的ivar。 CSAPromoViewController将有一个创建CSAPromoModelController对象的方法,该对象将使用图像进行初始化。操作的完成处理程序传递图像数组。在完成处理程序中,您基本上执行与原始viewDidLoad方法中相同的语句,以便设置控制器。

您可以按如下方式使用该操作:

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.pageViewController = [[UIPageViewController alloc] initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal options:nil];
    self.pageViewController.delegate = self;

    NSURLRequest *request = ...
    CSAPromoModelOperation* op = 
      [CSAPromoModelOperation alloc] initWithRequest:request
                                     completion:^(NSArray* result, NSError*error) 
    {
        // assuming we are executing on the main thread!
        if (error == nil) {
            self.imageArray = result;
            CSAPageDataViewController* startingViewController = 
                 [self viewControllerWithImage:self.imageArray[0] 
                                    storyboard:self.storyboard];
            NSArray* viewControllers = @[startingViewController];
            [self.pageViewController setViewControllers:viewControllers
                                              direction:UIPageViewControllerNavigationDirectionForward 
                                               animated:NO 
                                             completion:nil];
            ...
        }
        else {
            // handle error
        }
    }];

    [op start];
}