我有一个警告View 当用户正在更改标签时会弹出提醒View
UIAlertView *tempAlert = [[UIAlertView alloc] initWithTitle:@"Save Video?"
message:@"Do you wish to save the video ?"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Save",nil];
[tempAlert show];
[tempAlert setDelegate:self];
self.saveAlert = tempAlert;
[tempAlert release];
现在,我处理按钮点击事件,在此事件中,我想显示另一个带有进度的警告View 的子视图
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if ([alertView.title isEqualToString:@"Save Video?"])
{
if (buttonIndex == [alertView cancelButtonIndex])
{
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; //17.4.12
// Adjust the indicator so it is up a few pixels from the bottom of the alert
indicator.center = CGPointMake(self.saveAlert.bounds.size.width / 2, self.saveAlert.bounds.size.height - 40);
[indicator startAnimating];
[self.saveAlert addSubview:indicator];
[indicator release];
[(ImageCanvas1AppDelegate*)[[UIApplication sharedApplication] delegate] setMainAlert:self.saveAlert];
[NSThread detachNewThreadSelector:@selector(performSaveOperationWithTabChangeToIndex:) toTarget:self withObject:[NSNumber numberWithInt:self.tab]];
}
else
{
[self performSelectorOnMainThread:@selector(playMovie)
withObject:nil waitUntilDone:YES];
}
}
else
{
if (buttonIndex == [alertView cancelButtonIndex])
{
[self.videoGenerator cancelVideoGeneration];
}
}
}
if the user does touch the save button i show an alertView with a progressView as a subview this method is called in the playMovie method
- (void)showAlert
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Generating Video"
message:@"Please wait!"
delegate:self cancelButtonTitle:@"Cancel"
otherButtonTitles:nil, nil];
[alert performSelectorOnMainThread:@selector(show)
withObject:nil
waitUntilDone:YES];
[alert setDelegate:self];
self.videoAlert = alert;
UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleBar];
[progressView setFrame:CGRectMake(alert.bounds.size.width - progressView.bounds.size.width - 95,
alert.bounds.size.height - progressView.bounds.size.height - 80,
progressView.bounds.size.width,
progressView.bounds.size.height)];
[alert addSubview:progressView];
self.progressView = progressView;
[progressView release];
[alert release];
[pool release];
}
问题是:
如果我显示警报... View 正常情况下, 子视图定位是正常的
但是如果我在
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
View 是不适当的