/PrivateFrameworkHeader-iOS-iPhone-5.-

Header of privete framework iOS iPhone 5.0.*

Primary LanguageObjective-C

Here are iOS Objective-C headers as derived from runtime introspection.

The headers were produced using [RuntimeBrowser for iPhone](http://code.google.com/p/runtimebrowser/).

You can use the headers this way:

    NSBundle *b = [NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/Message.framework"];
    BOOL success = [b load];

    Class NetworkController = NSClassFromString(@"NetworkController");
    id nc = [NetworkController sharedInstance];

    NSLog(@"-- IMEI: %@", [nc IMEI]);


How To get phone number using CoreTelephony

    extern NSString *CTSettingCopyMyPhoneNumber();
    NSString *phoneNumber = CTSettingCopyMyPhoneNumber();
    NSLog(@"This is JailBroken Device with phone numer : %@", phoneNumber);