码迷,mamicode.com
首页 > 其他好文 > 详细

判断设备是否越狱的方法

时间:2014-12-08 17:02:07      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   on   div   log   

- (BOOL)isJailbroken
{
    BOOL jailbroken = NO;
    
    NSString *cydiaPath = @"/Applications/Cydia.app";
    
    NSString *aptPath = @"/private/var/lib/apt/";
    
    if ([[NSFileManager defaultManager] fileExistsAtPath:cydiaPath])
    {
        jailbroken = YES;
    }
    if ([[NSFileManager defaultManager] fileExistsAtPath:aptPath])
    {
        jailbroken = YES;
    }
    return jailbroken;
}

 

判断设备是否越狱的方法

标签:style   blog   io   ar   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/howeho/p/4151145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!