Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes build warnings for xcode 9 #24

Merged
merged 1 commit into from
Aug 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions KSScreenshotAction.h
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@
@property(nonatomic, assign) BOOL includeStatusBar; //defaults to NO, which means the status bar will be cropped out
@property(nonatomic, weak) KSScreenshotManager *manager; //set by addScreenshotAction:, you don't have to set this yourself

+ (instancetype)actionWithName:(NSString *)name asynchronous:(BOOL)asynchronous actionBlock:(void(^)())actionBlock cleanupBlock:(void(^)())cleanupBlock;
+ (instancetype)actionWithName:(NSString *)name asynchronous:(BOOL)asynchronous actionBlock:(void(^)(void))actionBlock cleanupBlock:(void(^)(void))cleanupBlock;

/**
* Encapsulates a screenshot action. The real portion of interest is the asynchronous flag. If set to NO, the screenshot will be taken immediately after
@@ -49,7 +49,7 @@
* @param actionBlock Block to set up the screenshot.
* @param cleanupBlock Block called after the screenshot is taken. Can be nil.
*/
- (id)initWithName:(NSString *)name asynchronous:(BOOL)asynchronous actionBlock:(void(^)())actionBlock cleanupBlock:(void(^)())cleanupBlock;
- (id)initWithName:(NSString *)name asynchronous:(BOOL)asynchronous actionBlock:(void(^)(void))actionBlock cleanupBlock:(void(^)(void))cleanupBlock;

@end

4 changes: 2 additions & 2 deletions KSScreenshotAction.m
Original file line number Diff line number Diff line change
@@ -28,12 +28,12 @@

@implementation KSScreenshotAction

+ (instancetype)actionWithName:(NSString *)name asynchronous:(BOOL)asynchronous actionBlock:(void(^)())actionBlock cleanupBlock:(void(^)())cleanupBlock
+ (instancetype)actionWithName:(NSString *)name asynchronous:(BOOL)asynchronous actionBlock:(void(^)(void))actionBlock cleanupBlock:(void(^)(void))cleanupBlock
{
return [[self alloc] initWithName:name asynchronous:asynchronous actionBlock:actionBlock cleanupBlock:cleanupBlock];
}

- (id)initWithName:(NSString *)name asynchronous:(BOOL)asynchronous actionBlock:(void(^)())actionBlock cleanupBlock:(void(^)())cleanupBlock
- (id)initWithName:(NSString *)name asynchronous:(BOOL)asynchronous actionBlock:(void(^)(void))actionBlock cleanupBlock:(void(^)(void))cleanupBlock
{
if ( (self = [super init]) ) {
[self setName:name];