IOS判断设备是否已越狱
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS判断设备是否已越狱相关的知识,希望对你有一定的参考价值。
转自:http://www.cnblogs.com/supercheng/archive/2012/12/05/2804166.html
- (BOOL)isJailbroken { BOOL jailbroken = NO; NSString *cydiaPath = @"/Applications/Cydia.app"; NSString *aptPath = @"/private/var/lib/apt/"; if ([[NSFileManagerdefaultManager] fileExistsAtPath:cydiaPath]) { jailbroken = YES; } if ([[NSFileManagerdefaultManager] fileExistsAtPath:aptPath]) { jailbroken = YES; } return jailbroken; }
以上是关于IOS判断设备是否已越狱的主要内容,如果未能解决你的问题,请参考以下文章