0

我正在打开一个通过 XML 加载更新的 ModelViewController

在 ViewController.m 中

LoadUpdatesView *luv = [[LoadUpdatesView alloc]  initWithNibName:@"LoadUpdatesView" bundle:nil];
luv.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:luv animated:YES];

在 LoadUpdatesView.m

- (void)viewDidLoad {
  [self xmlloadUpdates];
}

xmlloadUpdates

- (void) xmlloadUpdates {

   statusmessage.text = @"Start loading Updates"; 
    NSString * path = @"xxx.xml";
    [self parseXMLFileAtURL:path];

    for(int iX = 0; iX < [stories count]; iX++) {   
        statusmessage.text = @"Loading %@ of %@ entries",iX,[stories count];
    }

}

但是,模式窗口仅在 xmlloadUpdates 完成通过 xml 加载更新后显示。但是我想先显示模态窗口,然后开始做 XML 的东西(xmlloadupdates 在模态窗口上显示状态消息)

4

1 回答 1

1

尝试线程。在此处阅读并发编程指南:调度队列:http: //developer.apple.com/library/ios/#documentation/General/Conceptual/ConcurrencyProgrammingGuide/OperationQueues/OperationQueues.html

于 2012-09-15T14:11:48.753 回答