On iOS, double-click Home to switch

Source: Internet
Author: User

On iOS, double-click Home to switch

If you double-click Home, you will be taken to the iOS App's switcher page, where the App suspended by the current system is listed. The screen-cutting of each App is displayed. I believe everyone is familiar with this stuff. It is actually the last screen load of each App before it is suspended.

So how can we customize the display on App Switcher and understand that it is actually a screen loading for the App, so when it enters the background, we will change its appearance, will the uploaded image be changed?

After understanding this principle, let's give it a try.

A new project, three pictures, defautl.png, Defautl@2x.png, Default-568h@2x.png, put it into the project.

We declare a UIImageView variable in AppDelegate. h.

The Code is as follows:

-(Void) applicationWillResignActive :( UIApplication *) application {if (! ScreenShotView) {screenShotView = [[UIImageView alloc] initWithFrame: [self. window frame]; [screenShotView setImage: [UIImage imageNamed: @ "Default-568h"]; [self. window addSubview: screenShotView];} screenShotView. alpha = 1 ;}- (void) applicationDidBecomeActive :( UIApplication *) application {screenShotView. alpha = 0 ;}


 


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.