我正在打开一个通过 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 在模态窗口上显示状态消息)