我有一个alertView,当用户更改标签时会弹出
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];
现在我处理按钮点击事件,在这个事件中我想显示另一个带有progressView作为子视图的警报
- (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];
}
}
}
如果用户确实触摸了保存按钮,则会显示带有progressView作为子视图的alertView 这个方法在'playMovie'方法中调用
- (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];
}
问题是:
如果我正常显示alertView,则子视图定位正常
但如果我在
中显示alertView - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
它的进度位置是不正确的
答案 0 :(得分:1)
为什么要在uialertview中显示进度? UIalertviews是模态的。制作您自己的视图并显示相反,您可以完全控制,可以添加暂停,继续和停止按钮,您可以显示所需的所有信息。