ボタンを押すと、背景を選択するためのアラートビューが表示される Iphone アプリケーションがあります。ユーザーが選択しているバックグラウンドは、オーディオ クリップの背景として再生されます。しかし、表示する前に別のアラートを追加する必要があります。いくつかの警告を与えるためのこのアラート.その後、2番目のアラートをポップする必要があります.しかし、そのviewcontrollerの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;
}
これが私の質問になる前に、どうすれば別のアラートを含めることができますか?