# PrivateFrameworkHeader-iOS-iPhone-5 **Repository Path**: marklewis/private-framework-header-i-os-i-phone-5 ## Basic Information - **Project Name**: PrivateFrameworkHeader-iOS-iPhone-5 - **Description**: iOS 私有框架学习 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-13 - **Last Updated**: 2025-05-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 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);