The Control panel of your dream
Swift Package Manager is a tool for managing the distribution of Swift code and is integrated into Xcode.
dependencies: [
.package(url: "https://github.com/mirego/MRGControlPanel.git", from: "0.1.2")
]In Xcode, go to File → Add Package Dependencies…, enter the repository URL https://github.com/mirego/MRGControlPanel.git, and select the version you want to use.
CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like this super control panel in your projects.
platform :ios, '7.0'
pod TODO- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
if ([MRGControlPanel isControlPanelURL:url]) {
_panel = [MRGControlPanel controlPanel];
[_panel addPlugin:[MRGControlPanelSamplePlugin plugin]];
self.window.rootViewController = [_panel rootViewController];
[self.window makeKeyAndVisible];
}
return YES;
}- Add MRGControlPanel as a dependency in your project
- Create a class that implement MRGControlPanelPlugin protocol
- [_panel addPlugin:[YourAwesomePlugin plugin]];
See MRGControlPanelSamplePlugin.
MRGControlPanel is © 2016 Mirego and may be freely
distributed under the New BSD license.
See the LICENSE.md file.
Mirego is a team of passionate people who believe that work is a place where you can innovate and have fun. We're a team of talented people who imagine and build beautiful Web and mobile applications. We come together to share ideas and change the world.
We also love open-source software and we try to give back to the community as much as we can.