# JailBreakCheck **Repository Path**: seanhuang1661/JailBreakCheck ## Basic Information - **Project Name**: JailBreakCheck - **Description**: 越狱检测 和 破解检测 - **Primary Language**: Objective-C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-08-19 - **Last Updated**: 2021-11-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #JailBreakCheck //检测有没有越狱 if ([FYDBCheck isYY]) { self.labJailbreak_1.text = @"已越狱"; } else { self.labJailbreak_1.text = @"未越狱"; } //检测有没有被破解 if ([FYDBCheck isPJ]) { self.labCracking.text = @"已破解"; } else { self.labCracking.text = @"未破解"; }