Skype Update text 载有以下内容:
如果意外关闭,将自动重新启动
如何通过SDK执行?
就我所知,某些类型的评估可以背景进行,在特定情况下可以重新启动。 来源于 Apple果。
如果你开始这项服务,你的申请随后终止,如果新的活动到来,该系统就自动重新启动申请。 在这种情况下,上诉人通过了以下申请:didFinishLaunching WithOptions:申请代表的方法含有UIApplicationLaunchOptionsLocation。 关键是要表明,由于地点活动,你的申请已经启动。
我的意见是:Skype通过远程通知机制重新启动。
<>Update>
我认为,我找到了一些东西。 @Malek_Jundi是半右手。 你们的遗嘱应当没有非零的出勤法,但应当登记为VoIP的申请。
Because VoIP applications need to stay running in order to receive incoming calls, the system automatically relaunches the application if it exits with a nonzero exit code. (This could happen in cases where there is memory pressure and your application is terminated as a result.) However, terminating the application also releases all of its sockets, including the one used to maintain the VoIP service connection. Therefore, when the application is launched, it always needs to create its sockets from scratch.
http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPOSPrograGuide/Adpps/html#
“天空”确实如此:
只要我知道不可能重开你的预约,你就可以用<条码>exit(1)、杀死你的 app,但这不能由 Apple所允许,将被否决。 也许你会做一些工作,从主意见主计长中删除一些看法,并再次提出,重新编排数据和内容,但我并不认为这样做。
不能确定Skype有什么东西,但不幸的是,重新开始使用这种说法没有任何办法。 即便如此,也没有任何东西可以放弃(关于开端,请参见? “从方案角度看待”
问题在于,如果你回答的话,你会这样做吗?
研究:
Cheers,
For a basic app with nonconsumable in-app purchases, has anyone figured out best practices for using SKPaymentQueue s restoreCompletedTransactions? Observations I know it s recommended to always ...
I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...
I have a UITextField that is a subview of a UITableViewCell. When my view loads, I want the text field to become first responder. I have a pointer to the text field in the table cell, so to do this I ...
I ve been working on adding in-app purchases and was able to create and test in-app purchases using Store Kit (yay!). During testing, I exercised my app in a way which caused the app to crash mid ...
In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...
Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...
I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...
Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...