Skip to content

sqzxcv/MTSandBoxBrowser

Repository files navigation

MTSandBoxBrowser

CI Status Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

MTSandBoxBrowser is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'MTSandBoxBrowser'

Usage

swift code

import MTSandBoxBrowser

let vc = MTSandBoxBrowserViewController()
let nav = UINavigationController(rootViewController: vc)
self.present(nav, animated: true, completion: nil)
OC code:

#import <MTSandBoxBrowser/MTSandBoxBrowser-Swift.h> , #import "Hey-Swift.h"

- (void)goToReadLocalLogController {
MTSandBoxBrowserViewController *vc = [MTSandBoxBrowserViewController new];
vc.savePath = [NSString stringWithFormat:@"%@/Library/Caches/MTLogs/",NSHomeDirectory()];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
[self presentViewController:nav animated:YES completion:nil];
}

Author

sqzxcv, [email protected]

hebing, [email protected]

License

MTSandBoxBrowser is available under the MIT license. See the LICENSE file for more info...