Skip to content

Instantly share code, notes, and snippets.

@anditto
Created August 28, 2014 05:22
Show Gist options
  • Save anditto/e99859a7ed41922b9f68 to your computer and use it in GitHub Desktop.
Save anditto/e99859a7ed41922b9f68 to your computer and use it in GitHub Desktop.
- (id)initWithScanType:(ESTScanType)scanType completion:(void (^)(ESTBeacon *))completion
{
self = [super init];
if (self) {
self.scanType = scanType;
self.completion = [completion copy];
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment