我有一个 Iphone 应用程序,当我按下一个按钮时,它会显示一个警报视图来选择背景。无论用户选择哪个背景,都将作为音频剪辑的背景播放。但现在我需要在显示之前添加另一个警报此警报用于发出一些警告。之后我只需要弹出第二个。但我已经完成了在该视图控制器的 didappear 中选择警报并将其设置为 Uialertview 委托。并且在按钮操作上我正在执行不同的操作。任何人都可以帮助我实现这一目标吗?
proAlertView *loginav1=[[proAlertView alloc] initWithTitle:@"title" message:@"Choose a Background to play with this program?" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Field",@"Beach", @"Stars",nil];
[loginav1 setBackgroundColor:[UIColor colorWithRed:0.129 green:0.129 blue:0.129 alpha:1.0] withStrokeColor:[UIColor colorWithHue:0.625 saturation:0.0 brightness:0.8 alpha:0.8]];
[loginav1 show];
- (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
// the user clicked one of the OK/Cancel buttons
if (buttonIndex == 0)
{
//[self play];
//moviePlayer.scalingMode=MPMovieScalingModeAspectFill;
if(actionSheet.tag==123)
{
[self backButtonPressed];
}
}
else if (buttonIndex == 1)
{
videoFile = [[NSBundle mainBundle] pathForResource:@"video-track" ofType:@"mp4"];
[self play];
moviePlayer.scalingMode=MPMovieScalingModeAspectFill;
}
在这是我的问题之前,我怎样才能包含另一个警报?