-
-
Save maxgalbu/bec9cdb035051b0c4197 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface NSObject (Debounce) | |
- (void)debounce:(SEL)action delay:(NSTimeInterval)delay; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation NSObject (Debounce) | |
- (void)debounce:(SEL)action delay:(NSTimeInterval)delay | |
{ | |
__weak typeof(self) weakSelf = self; | |
[NSObject cancelPreviousPerformRequestsWithTarget:weakSelf selector:action object:nil]; | |
[weakSelf performSelector:action withObject:nil afterDelay:delay]; | |
} | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "NSObject+Debounce", | |
"version": "1.0.0", | |
"summary": "Debounce selector for specific delay", | |
"homepage": "https://gist.github.com/berzniz/8618806", | |
"license": "MIT", | |
"authors": "berzniz", | |
"source": { | |
"git": "https://gist.github.com/berzniz/8618806.git", | |
"commit": "d74b411a0850cb09960fed8189790b53d505cb26" | |
}, | |
"platforms": { | |
"ios": "6.0" | |
}, | |
"source_files": [ | |
"*.{h,m}" | |
], | |
"requires_arc": true | |
} |
Is this going to stick around permanently though? Seems a little flaky to reference a pod defined in a gist.
If I put this in a github repository, would it stick permanently? I guess so, as long as I don't delete it. Same as this gist :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To use it as a pod, use this line in your Podfile: