iOS-Runtime-Headers
iOS-Runtime-Headers copied to clipboard
iOS Objective-C headers as derived from runtime introspection
I have used core telephony framework(CTTelephonyNetworkInfo.h) and used it to get the values of cell id and signal strength using the following code: CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] init]; CTCarrier...
I'd like to use Private framework. Then can I upload to apple? And could you help me more? I'm trying to connect programmatically bluetooth headset in my app. not using...
First,thank you for sharing! But I can't find OpenCL.framework Headers ,and how can get it? Thanks very mach.(ps:I am chinese ,and my English is not very well.Hope you could understand...
Hi, is there any other way to get IMEI using private api in iOS 7? The code below works fine in iOS 6, but not in iOS 7. NSBundle *b...
Hi @nst, Something happened with the "iOS 8.1.1" commit. `BOOL` appears as `bool` now, but more importantly, boolean instance variables appear as `bool_var` instead of `BOOL _var`. Please fix this.
e.g. https://github.com/nst/iOS-Runtime-Headers/blob/master/Frameworks/AVFoundation.framework/AVAsset.h#L15 ``` @property(readonly) struct CGSize { float x1; float x2; } naturalSize; ``` https://github.com/nst/iOS-Runtime-Headers/blob/8.0/Frameworks/AVFoundation.framework/AVAsset.h#L15 ``` @property(readonly) struct CGSize { double x1; double x2; } naturalSize; ``` Has the generating...
I'm curious to know how I could use the CoreBluetooth.framework headers (shown in this repo). The usage example doesn't make it very clear on how to use them at all....
Hey, I have a problem, is that I am doing a media player with open frameworks and the only thing that remains for me finish it is to know the...