• Background fetching 
    • New background mode fetch
    • - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler;
    • Tuning the fetch interval - (void)setMinimumBackgroundFetchInterval:(NSTimeInterval)minInterval; const NSTimeInterval UIApplicationBackgroundFetchIntervalMinimum const NSTimeInterval UIApplicationBackgroundFetchIntervalNever
  • Remote notifications 
    • - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler;
    • typedef NS_ENUM(NSUInteger, UIBackgroundFetchResult) { UIBackgroundFetchResultNewData, UIBackgroundFetchResultNoData, UIBackgroundFetchResultFailed }
  • Background transfers 
    • NSURLSession Replacement API for NSURLConnection
    • - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)())completionHandler;

Related Session

  • What’s New in Foundation Networking 

 

 

Views and Images 

Image Rendering Modes 

  • Creating an image with a rendering mode      - (UIImage *)imageWithRenderingMode:(UIImageRenderingMode)renderingMode;
  • Pass the mode       typedef NS_ENUM(NSInteger, UIImageRenderingMode) { UIImageRenderingModeAutomatic, UIImageRenderingModeAlwaysOriginal, UIImageRenderingModeAlwaysTemplate }

Tint Color

 

 

 

相关文章:

  • 2021-12-19
  • 2021-09-07
  • 2021-07-05
  • 2021-11-03
  • 2021-04-29
  • 2021-07-31
  • 2021-12-05
  • 2021-08-19
猜你喜欢
  • 2021-12-17
  • 2021-06-22
  • 2021-07-22
  • 2021-08-17
  • 2021-08-08
  • 2022-12-23
  • 2022-01-02
相关资源
相似解决方案