BGTask.h 322 B

1234567891011121314
  1. //
  2. // BGTask.h
  3. // locationdemo
  4. //
  5. // Created by yebaojia on 16/2/24.
  6. // Copyright © 2016年 mjia. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface BGTask : NSObject
  11. +(instancetype)shareBGTask;
  12. -(UIBackgroundTaskIdentifier)beginNewBackgroundTask; //开启后台任务
  13. @end