IOS在后台每隔一段时间执行一下

IOS在后台每隔一段时间执行一下

步骤:

1.在info.plist里加入UIBackgroundModes键,其值为数组,数组之一为voip字符串:

<key>UIBackgroundModes</key><array><string>voip</string></array>

2.在程序启动的时候调用- (void)setupBackgroundHandler函数,函数体如下:

#pragma mark - VoIP
 
- ( void )setupBackgroundHandler
{   
     if ( UIUDeviceIsBackgroundSupported() )
     {
         if (
            [[UIApplication sharedApplication] setKeepAliveTimeout:600 handler: ^
             {
                 [ self  requestServerHowManyUnreadMessages];
             }
             ]
            )
         {
             UDLog(@ "Set Background handler successed!" );
         }
         else
         { //failed
             UDLog(@ "Set Background handler failed!" );
         }
     }
     else
     {
         UDLog(@ "This Deviece is not Background supported." );
     }
}
 
- ( void )requestServerHowManyUnreadMessages
{
     UIApplication* app = [UIApplication sharedApplication];
     
     if ([app applicationState] == UIApplicationStateBackground)
     {
         NSArray  * oldNotifications = [app scheduledLocalNotifications];
         if  ([oldNotifications count] > 0)
             [app cancelAllLocalNotifications];
         UILocalNotification* alarm = [[[UILocalNotification alloc] init] autorelease];
         if  (alarm)
         {
             alarm.fireDate = [ NSDate  dateWithTimeIntervalSinceNow:15];
             alarm.timeZone = [ NSTimeZone  defaultTimeZone];
             alarm.repeatInterval = 0;
             alarm.soundName = UILocalNotificationDefaultSoundName;
             alarm.alertBody = @ "Time to request MOA2 Server!" ;
             [app scheduleLocalNotification:alarm];
         }
     }
     else  if ([app applicationState] == UIApplicationStateActive)
     {
         UIAlertView *alertView =  [[[UIAlertView alloc] init] autorelease];
         [alertView setTitle:@ "alert" ];
         [alertView setMessage:@ "Time to request MOA2 Server!" ];
         [alertView addButtonWithTitle: NSLocalizedString (@ "cancel" , nil )];
         [alertView setDelegate: nil ];
         [alertView show];
     }
}

解说:


- (BOOL)setKeepAliveTimeout:(NSTimeInterval)timeout handler:(void (^)(void))keepAliveHandler

函数功能:app每隔timeout唤醒一次。

0.要成功调用该函数,就必须在Info.plist里设UIBackgroundModes键的array值之一voip字符串.

1.timeout必须>=600

2.唤醒app的时间间隔是不精准的。

3.唤醒后只有10秒执行时间。即handler里的代码要在10秒类执行完。10秒后app再次被阻塞。

(可以用-backgroundTimeRemaining属性来返回剩余时间

4.该函数成功调用后,在程序生命周期内有效。

该函数的效果在回到前台的状况下,依然有效。(因此可以把它当timer使.) 

5.clearKeepAliveTimeout函数用来清除handler。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
iOS上的AVAudioPlayer提供了一种方便的方式来进行音频播放,包括后台播放。在后台播放音频时,我们需要遵循特定的设置和步骤。 首先,我们需要在应用程序的Capabilities选项卡中启用后台模式。在Xcode中找到应用程序的Targets,然后点击Capabilities选项卡,将“Background Modes”开关打开,并勾选“Audio, AirPlay, and Picture in Picture”。 然后,在代码中设置AVAudioSession的类别为AVAudioSessionCategoryPlayback。这可以通过以下代码实现: ``` import AVFoundation let audioSession = AVAudioSession.sharedInstance() do { try audioSession.setCategory(.playback, options: .defaultToSpeaker) try audioSession.setActive(true) } catch { print("设置音频会话类别失败: \(error)") } ``` 接下来,我们需要在应用程序的AppDelegate类中创建一个后台任务。当我们按下Home键离开应用程序时,这个后台任务将会被激活。 ``` func applicationDidEnterBackground(_ application: UIApplication) { backgroundTask = application.beginBackgroundTask(withName: "PlayAudioInBackground", expirationHandler: { application.endBackgroundTask(self.backgroundTask) self.backgroundTask = UIBackgroundTaskIdentifier.invalid }) } ``` 然后,创建一个AVAudioPlayer实例来播放音频文件。我们可以使用它的`play`方法来开始播放音频。 ``` let audioURL = Bundle.main.url(forResource: "audio", withExtension: "mp3") do { audioPlayer = try AVAudioPlayer(contentsOf: audioURL!) audioPlayer.prepareToPlay() audioPlayer.play() } catch { print("无法播放音频文件: \(error)") } ``` 在音频播放完成或者我们不再需要后台任务时,需要结束后台任务。 ``` func audioPlayerDidFinishPlaying(_ player: AVAudioPlayer, successfully flag: Bool) { if flag { // 当音频播放完成时调用 audioPlayer.stop() UIApplication.shared.endBackgroundTask(backgroundTask) backgroundTask = UIBackgroundTaskIdentifier.invalid } } ``` 通过以上设置,我们可以确保AVAudioPlayer在应用程序进入后台时继续播放音频。但需要记住,长时间背景播放可能会影响设备的电池寿命,所以请确保仅在必要时使用后台播放功能。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值