Skip to content

Instantly share code, notes, and snippets.

@aitskovi
aitskovi / 0_reuse_code.js
Created January 29, 2014 19:52
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@aitskovi
aitskovi / NSObject_KVCExtensions.h
Created August 25, 2011 18:44
Key Value Coding - canSetValueForKey/KeyPath
#import <Foundation/Foundation.h>
@interface NSObject (NSObject_KVCExtensions)
- (BOOL)canSetValueForKey:(NSString *)key;
- (BOOL)canSetValueForKeyPath:(NSString *)keyPath;
@end
@aitskovi
aitskovi / NSObject_KVCExtensions.h
Created August 25, 2011 18:43
Key Value Coding - canSetValueForKey/KeyPath
#import <Foundation/Foundation.h>
@interface NSObject (NSObject_KVCExtensions)
- (BOOL)canSetValueForKey:(NSString *)key;
- (BOOL)canSetValueForKeyPath:(NSString *)keyPath;
@end