I am trying to use private frameworks in my app which is not going to app store. Can anyone guide me, how to use private headers generated using class-dump in my ios application.
Below link is listing some private frameworks generated using class-dump. I am trying to import SringBoardServices.h in my MyClass.m file, but i am unable to access it. I am creating an object to SringBoardServices.h like SringBoardServices *ref = [[SringBoardServices alloc]init]; and trying to access it's methods like ref.method_name. Whether it is a right approach to use private frameworks? LINK: private-frameworks
I tried using Class myclass = NSClassFromString(@"SpringBoardServices"); id myobj = [[myclass alloc] init]; , but unable to access SpringBoardServices methods.