Snapshooter 0.1.3

Snapshooter 0.1.3

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Nov 2015

Maintained by Seiya.



  • By
  • Seiya Shimokawa

Installation

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

pod "Snapshooter"

Usage

Just invoke [Snapshooter enableWithProperties:...] from your AppDelegate’s application:didFinishLaunchingWithOptions: method. Also, implement [Snapshooter supportedInterfaceOrientationsForWindow:...] if your app allows landscape mode.

#import "Snapshooter.h"

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    [Snapshooter enableWithProperties:@{}];
}

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    return [Snapshooter supportedInterfaceOrientationsForWindow:window];
}

Author

Seiya Shimokawa, [email protected]

License

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