Skip to content

Instantly share code, notes, and snippets.

@tarbayev
Created January 29, 2016 23:24
Show Gist options
  • Save tarbayev/c1cccbb6d2fdfa1227cb to your computer and use it in GitHub Desktop.
Save tarbayev/c1cccbb6d2fdfa1227cb to your computer and use it in GitHub Desktop.
@interface NSObject (MFB_KVCVisitorBlock)
@property (nonatomic, weak) void (^mfb_visitBlock)(id);
@end
@implementation NSObject (MFB_KVCVisitorBlock)
- (void (^)(id))mfb_visitBlock
{
return nil;
}
- (void)setMfb_visitBlock:(void (^)(id))mfb_visitBlock
{
mfb_visitBlock(self);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment