खोज…


परिचय

IOS के लिए ऐप प्रोग्रामिंग गाइड में :

पृष्ठभूमि पर जाने से पहले विचारों से संवेदनशील जानकारी निकालें।

जब कोई ऐप बैकग्राउंड में ट्रांज़िशन करता है, तो सिस्टम ऐप की मुख्य विंडो का एक स्नैपशॉट लेता है, जो तब आपके ऐप को अग्रभूमि में परिवर्तित करते समय संक्षिप्त रूप से प्रस्तुत करता है।

टिप्पणियों

IOS7 मल्टीटास्किंग स्विचर में स्क्रीनशॉट को नियंत्रित करने वाले वास्तविक StackOverflow प्रश्न से अनुकूलित और Ob-c उत्तर का उत्तर दें

स्नैपशॉट के लिए एक छवि दिखाएं

public override void DidEnterBackground(UIApplication application)
 {
    //to add the background image in place of 'active' image
    var backgroundImage = new UIImageView();
    backgroundImage.Tag = 1234;
    backgroundImage.Image = UIImage.FromBundle("Background");
    backgroundImage.Frame = this.window.Frame;
    this.window.AddSubview(backgroundImage);
    this.window.BringSubviewToFront(backgroundImage);
}

public override void WillEnterForeground(UIApplication application)
{
    //remove 'background' image
    var backgroundView = this.window.ViewWithTag(1234);
    if(null != backgroundView)
        backgroundView.RemoveFromSuperview();
}


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow