Polidea / ios-class-guard

Simple Objective-C obfuscator for Mach-O executables.
http://www.polidea.com
1.64k stars 240 forks source link

I'm having trouble obfuscation. #48

Closed renlix closed 8 years ago

renlix commented 8 years ago

When i obfuscate my project, i have no error. But when i run my project, only appears my screens UITableViewController, but my screens UIViewController only appear black screen.

scibas commented 8 years ago

Hi renlix, Could you provide more details?

renlix commented 8 years ago

My Xcode is 6.4. Yes, is generated the symbols.h. Yes, my project have a file.pch, with #import ////symbols. The obfuscation works well, it generates the necessary files, after that I can build my project and generate my App. But when I run my App on the screens that are UIViewController not apacere nothing but a black screen. I just solve it. I added: "- (void) loadView {      self.view = (UIView *) [[[NSBundle mainBundle] loadNibNamed:@"name my xib file" owner self options: nil] objectAtIndex: 0]; } "

Then went on to work normally.

Thank you very much.