开发者

How to detect what triggered applicationWillResignActive?

I have a Video Chat application that I want to disconnect from a call when the device is locked, but stay connected when an SMS, calendar, low battery or any other type of notification is received. The problem is, I cannot figure out for the life of me how to determine what causes my app deleg开发者_开发技巧ate's applicationWillResignActive selector to be called.

I have thought about implementing some kind of timeout where if applicationDidBecomeActive was not called within a certain number of seconds I would disconnect but that falsely assumes that a user will ignore or accept a received notification within that number of seconds.

Can anyone help me figure out a way to determine what caused the applicationWillResignActive selector to be called?

Many Thanks, Mason


I think the short answer may be, that you can't really determine specifically what causes the resign call, however you can only plan according to if it actually goes in the background or not.

Check this link out where it details the steps multitasking takes.

http://www.cocoanetics.com/2010/07/understanding-ios-4-backgrounding-and-delegate-messaging/

Good luck, you seem like an awesome guy!


In my case I was stopping the video capturing on NSNotification.Name.UIApplicationWillResignActive

Now, I'm using the: NSNotification.Name.UIApplicationDidEnterBackground

It isn't triggered when a message comes, or in case someone is calling to the capturing device.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜