Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/powerbi/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios 当用户解锁iPhone时显示UIAlertView_Ios_Objective C_Jailbreak_Theos - Fatal编程技术网

Ios 当用户解锁iPhone时显示UIAlertView

Ios 当用户解锁iPhone时显示UIAlertView,ios,objective-c,jailbreak,theos,Ios,Objective C,Jailbreak,Theos,我最近在iOS 7和解锁方面遇到了一些问题。我试图在用户每次解锁其设备时显示UIAlertView 我也用同样的方法来处理回复。我正在使用ioopendev和logos模板。是否有人知道如何在使用iOS 7的SBLockscreenViewController或其他工具解锁后立即实现警报 - (void)applicationWillEnterForeground:(UIApplication *)application { // Called as part of the transi

我最近在iOS 7和解锁方面遇到了一些问题。我试图在用户每次解锁其设备时显示
UIAlertView


我也用同样的方法来处理回复。我正在使用ioopendev和logos模板。是否有人知道如何在使用iOS 7的
SBLockscreenViewController
或其他工具解锁后立即实现
警报

- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

从SBLockScreenViewController中查看以下方法:

-(void) prepareForUIUnlock;
-(void) finishUIUnlockFromSource:(int)source;

这两款软件都应该可以正常工作。

他说的是越狱调整,而不是应用程序。非常感谢!你帮我省了几个小时寻找正确的方法。@taysamjiggly,你读过我的评论了吗?您的问题已经得到了回答。@creker我看到了您的评论并尝试了它,但它遗漏了(源)部分,我的调整出现了错误。我明白了,谢谢你的评论!