2018-01-02a few seconds read (About 59 words)Using dlopen in iOSIssue #133 With dlopen we can make uses of some private frameworks. It will be fun From iPhone X home button 1234567#import <dlfcn.h>// somewhere in viewDidLoaddlopen([binaryPath cStringUsingEncoding:NSUTF8StringEncoding], RTLD_NOW);UIView *const view = [[NSClassFromString(@"SBHomeGrabberView") alloc] init];[view sizeToFit];[self.view addSubview:view];#iOS