iOS開發-自訂後台顯示圖片(iOS7-Background Fetch的應用)

來源:互聯網
上載者:User

標籤:style   blog   class   code   c   tar   

之前在用電池醫生的時候, 發現它有這樣一個功能:當應用進入背景時候, 會顯示另外一張圖片覆蓋App Switcher顯示的介面。

效果如下:

變成---->


而這樣的一個功能, 對於保護使用者隱私還是挺有用的。

這就涉及到了Background Fetch的使用。當然, Background Fetch有更多,更有用的功能, 

詳見-->iOS 7學習:多任務處理之Background Fetch


下面就介紹下後台圖片切換的實現。


1.程式配置後台模式

操作如下:


2. AppDelegate.h添加代碼:

@property (strong, nonatomic) UIImageView *splashView;

3.AppDelegate.m添加代碼:

////  AppDelegate.m//  FuckTest////  Created by Colin on 14-4-5.//  Copyright (c) 2014年 icephone. All rights reserved.//#import "AppDelegate.h"@implementation AppDelegate@synthesize splashView;- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{    // Override point for customization after application launch.        [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];    [self.window makeKeyAndVisible];    splashView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 568)];    [splashView setImage:[UIImage imageNamed:@"Default-568h.png"]];        return YES;}- (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{    NSLog(@"後台擷取");    completionHandler(UIBackgroundFetchResultNewData);}- (void)applicationWillResignActive:(UIApplication *)application{    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.}- (void)applicationDidEnterBackground:(UIApplication *)application{        [self.window addSubview:splashView];    [self.window bringSubviewToFront:splashView];    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.     // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.}- (void)applicationWillEnterForeground:(UIApplication *)application{    [self.splashView removeFromSuperview];    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.}- (void)applicationDidBecomeActive:(UIApplication *)application{    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.}- (void)applicationWillTerminate:(UIApplication *)application{    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.}@end



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.