UIAlertView ने पहले IOS 9 को अपदस्थ किया


108

मैं UIAlertController के बजाय UIAlertView का उपयोग करने के कई तरीके आज़मा चुका हूं। मैंने कई तरीके आज़माए, लेकिन मैं अलर्ट एक्शन काम नहीं कर सकता। यहाँ मेरा कोड है जो IOS 8 और IOS 9 में ठीक काम करता है, लेकिन हटाए गए झंडे के साथ दिखाई दे रहा है। मैंने नीचे दिए गए सुरुचिपूर्ण सुझाव की कोशिश की, लेकिन मैं इसे इस संदर्भ में कार्य नहीं कर सकता। मुझे अपना ऐप सबमिट करने की आवश्यकता है और यह पते की अंतिम बात है। किसी भी आगे के सुझाव के लिए धन्यवाद। मैं एक नौसिखिया हूँ।

#pragma mark - BUTTONS ================================
- (IBAction)showModesAction:(id)sender {
NSLog(@"iapMade: %d", iapMade3);

// IAP MADE ! ===========================================
if (!iapMade3) {

    //start game here
    gamePlaysCount++;
    [[NSUserDefaults standardUserDefaults]setInteger:gamePlaysCount forKey:@"gamePlaysCount"];
    NSLog(@"playsCount: %ld", (long)gamePlaysCount);

    if (gamePlaysCount >= 4) {
    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Basic"
                                                     message: THREE_PLAYS_LIMIT_MESSAGE
                                                    delegate:self
                                           cancelButtonTitle:@"Yes, please"
                                           otherButtonTitles:@"No, thanks", nil];
       [alert show];

        NSString *path = [[NSBundle mainBundle] pathForResource:@"cow" ofType:@"wav"];
        _pop =[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
        [_pop play];
        [self dismissViewControllerAnimated:true completion:nil];

    } else {
        if (gamePlaysCount == 1)  {
            // Create & store the next 5 mins when player gets 3 more lives
            nextDateToPlay = [[NSDate date] dateByAddingTimeInterval:60*60*0.1];
            NSLog(@"CURRENT DATE: %@", [NSDate date]);
            NSLog(@"NEXT DAY: %@", nextDateToPlay);
            [[NSUserDefaults standardUserDefaults]setObject: nextDateToPlay    forKey:@"nextDateToPlay"];
            NSLog(@"nextDateToPlay: %@", nextDateToPlay);

            UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Basic"
                                                           message:  THREE_PLAYS_LIMIT_MESSAGE2
                                                          delegate:self
                                                 cancelButtonTitle:@"Got it!"
                                                 otherButtonTitles:@"Start", nil];
            [alert show];
        } else {

            if (gamePlaysCount == 3)  {
                UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Basic"
                                                               message: THREE_PLAYS_LIMIT_MESSAGE3
                                                              delegate:self
                                                     cancelButtonTitle:@"Yep, I Know!"
                                                     otherButtonTitles:@"Start", nil];
                [alert show];
            }
        }
    }
}

}

// IAP NOT MADE =============================

#pragma mark - ALERTVIEW DELEGATE ============================

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {

if ([[alertView buttonTitleAtIndex:buttonIndex] isEqualToString:@"Yes, please"]) {

    UIStoryboard *storyboard = self.storyboard;
    MenuViewController *svc = [storyboard instantiateViewControllerWithIdentifier:@"Store"];
    svc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
    [self presentViewController:svc animated:YES completion:nil];

        }

}

1
प्रश्न स्पष्ट नहीं। तुम क्या चाहते हो ?
मौकग

UIAlertView IOS 9 में पदावनत है और हमें इसके बजाय UIAlertControllerStyleAlert के एक पसंदीदा सेट के साथ UIAlertController का उपयोग करना होगा। हालाँकि, जब मैं UIAlertController तरीकों का उपयोग करता हूं तो अलर्ट दिखाई नहीं देता है। मैंने नीचे दिए गए समाधान की कोशिश की, लेकिन फिर भी सतर्क दृश्य नहीं दिखा .. धन्यवाद ..
Bux

ठीक है। क्या आप दिखा सकते हैं कि आपने क्या किया है और वह काम नहीं करता है?
12

1
प्रस्तुत करने के बाद आप कॉल कर रहे हैं [स्वयं को खारिज करेंControllerAnimated: true पूर्ण: nil]; जो चेतावनी नियंत्रक को खारिज कर देगा
अदनान आफताब

1
यह इस मायने में एक महत्वपूर्ण सवाल है कि UIAlertController बहुत नया है और कई डेवलपर्स डिप्रेशन के बारे में चिंतित होंगे। अनुचित वोट के कारण वैध प्रश्न पर बुरा प्रभाव पड़ता है। जिन लोगों ने सवाल का जवाब दिया, उन्हें एडिट के बाद अपना वोट बदलना चाहिए था। लेकिन फिर, "डाउन वोट ट्रोल" जो अपने डाउन वोट के लिए बिल्ला प्राप्त करते हैं, वैसे भी ऐसा नहीं करते हैं। SO मॉडरेटर्स के पास इसे ठीक करने का एक तरीका होना चाहिए।
टोटोरो

जवाबों:


237

IOS8 से Apple नए UIAlertControllerवर्ग प्रदान करता है जिसे आप UIAlertView के बजाय उपयोग कर सकते हैं जो अब पदावनत हो गया है, इसे पदावनति संदेश में भी कहा गया है:

UIAlertView को हटा दिया गया है। इसके बजाय UIAlertControllerStyleAlert की प्राथमिकता के साथ UIAlertController का उपयोग करें

तो आपको कुछ इस तरह का उपयोग करना चाहिए

UIAlertController * alert = [UIAlertController
                alertControllerWithTitle:@"Title"
                                 message:@"Message"
                          preferredStyle:UIAlertControllerStyleAlert];



UIAlertAction* yesButton = [UIAlertAction
                    actionWithTitle:@"Yes, please"
                              style:UIAlertActionStyleDefault
                            handler:^(UIAlertAction * action) {
                                //Handle your yes please button action here
                            }];

UIAlertAction* noButton = [UIAlertAction
                        actionWithTitle:@"No, thanks"
                                  style:UIAlertActionStyleDefault
                                handler:^(UIAlertAction * action) {
                                   //Handle no, thanks button                
                                }];

[alert addAction:yesButton];
[alert addAction:noButton];

[self presentViewController:alert animated:YES completion:nil];

2
आपके तेजी से उत्तर के लिए धन्यवाद .. मैंने यह कोशिश की, लेकिन सतर्क दृश्य नहीं दिखाता है .. और न ही यह तब होता है जब मैं अपनी हां कृपया कार्रवाई जोड़ता हूं।
बक्स

क्या आप मुझे अपना कोड दिखा सकते हैं, क्योंकि मेरे लिए यह ठीक है, सुनिश्चित करें कि आप इस कोड को मुख्य सूत्र पर क्रियान्वित कर रहे हैं
अदनान आफताब

क्या आप अपने कोड को प्रश्न के अंदर जोड़ सकते हैं, यह बेहतर होगा कि हर कोई देख सकता है
अदनान आफताब

नमस्ते, मैंने अपना पूरा कोड जोड़ा जो IOS8 और IOS9 में काम करता है, लेकिन इसे हटा दिया गया है। मैंने आपके कोड को लागू करने के कई तरीके आज़माए, लेकिन अलर्ट दिखाई नहीं देता, और स्टोर ViewController को खोलने की क्रिया, कार्य नहीं करेगी। आपके सहयोग के लिए धन्यवाद।
बक्स

मुझे लगता है [alert dismissViewControllerAnimated:YES completion:nil];कि एक्शन हैंडलर से इस लाइन को हटाना बेहतर है , क्योंकि इस कोड के बिना अलर्ट अपने आप छिप जाता है। इसके अलावा, कोई गलती से पूरा होने वाले ब्लॉक में कोड डाल सकता है जिसे निष्पादित नहीं किया जाएगा। चीयर्स :)
stellz

21
//Calling     
[self showMessage:@"There is no internet connection for this device"
                    withTitle:@"Error"];

//Method

-(void)showMessage:(NSString*)message withTitle:(NSString *)title
{

 UIAlertController * alert=   [UIAlertController
                                  alertControllerWithTitle:title
                                  message:message
                                  preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){

        //do something when click button
    }];
    [alert addAction:okAction];
    UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController];
    [vc presentViewController:alert animated:YES completion:nil];
}

यदि आप NSObject क्लास में इस अलर्ट का उपयोग करना चाहते हैं, तो आपको निम्न का उपयोग करना चाहिए:

-(void)showMessage:(NSString*)message withTitle:(NSString *)title{
dispatch_async(dispatch_get_main_queue(), ^{
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];
    [alertController addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

    }]];

    [[[[UIApplication sharedApplication] keyWindow] rootViewController] presentViewController:alertController animated:YES completion:^{
    }];
});
}

14

नए कार्यान्वयन का स्विफ्ट संस्करण है:

 let alert = UIAlertController(title: "Oops!", message:"your message", preferredStyle: .Alert)
 alert.addAction(UIAlertAction(title: "Okay.", style: .Default) { _ in })
 self.presentViewController(alert, animated: true){}

11

Xcode 8 + स्विफ्ट

मान लिया गया selfहै UIViewController:

func displayAlert() {
    let alert = UIAlertController(title: "Test",
                                  message: "I am a modal alert",
                                  preferredStyle: .alert)
    let defaultButton = UIAlertAction(title: "OK",
                                      style: .default) {(_) in
        // your defaultButton action goes here
    }
    
    alert.addAction(defaultButton)
    present(alert, animated: true) { 
        // completion goes here
    }
}

यदि स्व यह देखें कि हम इसे कैसे प्राप्त करते हैं?
सबिन के कुरीकोस

एक दृश्य का व्यवसाय करने में कोई योगदान नहीं है, ठीक है, व्यापार तर्क। अपने आर्किटेक्चर को
रीथिंक

6

UIAlertController + AlertController श्रेणी बनाएं:

UIAlertController + AlertController.h

typedef void (^UIAlertCompletionBlock) (UIAlertController *alertViewController, NSInteger buttonIndex);

@interface UIAlertController (AlertController)

+ (instancetype)showAlertIn:(UIViewController *)controller
                  WithTitle:(NSString *)title
                    message:(NSString *)message
          cancelButtonTitle:(NSString *)cancelButtonTitle
          otherButtonTitles:(NSString *)otherButtonTitle
                   tapBlock:(UIAlertCompletionBlock)tapBlock;
@end

UIAlertController + AlertController.m

@implementation UIAlertController (NTAlertController)

+ (instancetype)showAlertIn:(UIViewController *)controller
                  WithTitle:(NSString *)title
                    message:(NSString *)message
          cancelButtonTitle:(NSString *)cancelButtonTitle
          otherButtonTitles:(NSString *)otherButtonTitle
                   tapBlock:(UIAlertCompletionBlock)tapBlock {

    UIAlertController *alertController = [self alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];

    if(cancelButtonTitle != nil) {

        UIAlertAction *cancelButton = [UIAlertAction
                                       actionWithTitle:cancelButtonTitle
                                       style:UIAlertActionStyleCancel
                                       handler:^(UIAlertAction *action)
                                       {
                                           tapBlock(alertController, ALERTACTION_CANCEL); // CANCEL BUTTON CALL BACK ACTION
                                       }];
        [alertController addAction:cancelButton];

    }

    if(otherButtonTitle != nil) {

        UIAlertAction *otherButton = [UIAlertAction
                                   actionWithTitle:otherButtonTitle
                                   style:UIAlertActionStyleDefault
                                   handler:^(UIAlertAction *action)
                                   {
                                       tapBlock(alertController, ALERTACTION_OTHER); // OTHER BUTTON CALL BACK ACTION
                                   }];

        [alertController addAction:otherButton];
    }

    [controller presentViewController:alertController animated:YES completion:nil];

    return alertController;
}

@end

अपने ViewController.m में

[UIAlertController showAlertIn:self WithTitle:@"" message:@"" cancelButtonTitle:@"Cancel" otherButtonTitles:@"Other" tapBlock:^(UIAlertController *alertController, NSInteger index){

 if(index == ALERTACTION_CANCEL){

 // CANCEL BUTTON ACTION
 }else
if(index == ALERTACTION_OTHER){

 // OTHER BUTTON ACTION
 }

 [alertController dismissViewControllerAnimated:YES completion:nil];

 }];

नोट: यदि आप दो से अधिक बटन जोड़ना चाहते हैं तो UIAlertController के लिए एक और अधिक UIAlertAction जोड़ें।


3

UIAlertView के बजाय UIAlertController का उपयोग करें

-(void)showMessage:(NSString*)message withTitle:(NSString *)title
{
UIAlertController * alert=   [UIAlertController
                              alertControllerWithTitle:title
                              message:message
                              preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){

    //do something when click button
}];
[alert addAction:okAction];
UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController];
[vc presentViewController:alert animated:YES completion:nil];
}

3

मैंने उपरोक्त विधियों की कोशिश की, और कोई भी सतर्क दृश्य नहीं दिखा सकता है, केवल तभी जब मैं presentViewController:विधि को एक dispatch_asyncवाक्य में रखूं:

dispatch_async(dispatch_get_main_queue(), ^ { [self presentViewController:alert animated:YES completion:nil]; });

IOS 9 के लिए UIAlertView के विकल्प का संदर्भ लें ?


1
 UIAlertController * alert = [UIAlertController
                                 alertControllerWithTitle:@"Are you sure you want to logout?"
                                 message:@""
                                 preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction* yesButton = [UIAlertAction
                                actionWithTitle:@"Logout"
                                style:UIAlertActionStyleDestructive
                                handler:^(UIAlertAction * action)
                                {

                                }];

    UIAlertAction* noButton = [UIAlertAction
                               actionWithTitle:@"Cancel"
                               style:UIAlertActionStyleDefault
                               handler:^(UIAlertAction * action) {
                                   //Handle no, thanks button
                               }];

    [alert addAction:noButton];
    [alert addAction:yesButton];

    [self presentViewController:alert animated:YES completion:nil];

0

इसे देखो:

UIAlertController *alertctrl =[UIAlertController alertControllerWithTitle:@"choose Image" message:nil preferredStyle:UIAlertControllerStyleActionSheet];
    UIAlertAction *camera =[UIAlertAction actionWithTitle:@"camera" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
        [self Action];  //call Action need to perform 
    }];

[alertctrl addAction:camera];
-(void)Action 

{

}

0
-(void)showAlert{

    UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Title"
                                                                   message:"Message"
                                                            preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
                                                          handler:^(UIAlertAction * action) {}];

    [alert addAction:defaultAction];
    [self presentViewController:alert animated:YES completion:nil];
}

[self showAlert]; // कॉलिंग विधि

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.