ScrollView addSubview:非常慢

时间:2012-06-20 07:03:58

标签: iphone xcode uiscrollview

我使用scrollview来显示viewcontrollers视图。如果用户到达缓存视图的末尾,我的方法将重新加载新视图。我的NSLogs表示该方法已完成,但显示视图需要5秒钟。 我认为[scrollView addSubview:vc.view]非常慢,但我没有发现任何改进它。

调用整个方法 - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView

 scrollView.userInteractionEnabled = NO;

    UIActivityIndicatorView *activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
    [activityIndicator setFrame:CGRectMake((320.f*index)+135.f, 151, 50, 50)];
    [activityIndicator setHidesWhenStopped:YES];
    [activityIndicator startAnimating];

    [scrollView addSubview:activityIndicator];

    MBBAppDelegate *delegate = (MBBAppDelegate *)[UIApplication sharedApplication].delegate;

    [delegate fetchDealsWithFilter:dealFilter fromIndex:index toIndex:(index+3) onSuccess:^(id object){

        MBBDealList *list = object;

        int i = 0;

        ProductDetailViewController *vc;

        for (MBBDeal *deal in [list deals]) {

            NSLog(@"start %i",i);
            int indexInArray = i;//[list.deals indexOfObject:deal];

            if (indexInArray+index >= numDeals) {
                return;
            }

            vc = [[ProductDetailViewController alloc] init];

            //fetch the deal and insert
            vc.numberOfDeals = numDeals;
            vc.dealIndex = index+1+indexInArray;
            vc.dealFilter = dealFilter;
            vc.deal = deal;

            vc.view.frame = CGRectMake(320.f*(index+indexInArray), 0.f, 320.f, 436.f);

            [scrollView addSubview:vc.view];

            [productDetailViewControllers insertObject:vc atIndex:(index+indexInArray)];

            i++;
        }
        [activityIndicator stopAnimating];
        scrollView.userInteractionEnabled = YES;

    }];

}

有谁知道如何改进我的方法?

1 个答案:

答案 0 :(得分:0)

我可以从您的问题中了解到,您用于显示数据获取过程的活动指示器未正确使用。 即使活动指示消失,您的数据获取过程仍然有效。

你可以做两件事: ether使用performSelectorInBackground方法在后台调用数据获取方法,或将活动指示符放在已创建数据获取方法的应用程序委托中。