I hereby claim:
- I am nicktoumpelis on github.
- I am nicktoumpelis (https://keybase.io/nicktoumpelis) on keybase.
- I have a public key ASDhV8XEW3HX-lbFiCZUO5E5CqW53I0Vp0WCdnpYwlr-Dwo
To claim this, I am signing this object:
static void * const kKVOContext = (void *)&kKVOContext; | |
@implementation Class | |
- (void)someMethod { | |
[super someMethod]; | |
[observedObject addObserver:self | |
forKeyPath:@"keyPath" | |
options:NSKeyValueObservingOptionInitial | |
context:kKVOContext]; |
#import "Kiwi.h" | |
static NSTimeInterval const kAsynchronousTestingTimeout = 2.0; | |
SPEC_BEGIN(KlassSpec) | |
describe(@"An object", ^{ | |
context(@"when...", ^{ | |
__block Klass *object = nil; | |
beforeAll(^{ // or 'beforeEach', depending on your needs |
// external constants (defined in AAAKlass.m) | |
extern const CGFloat AAKlassVerticalMargin; | |
extern NSString * const AAAKlassIdentifier; |
- (void)initializeCoreDataStack | |
{ | |
// Some error checking is necessary... | |
NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"ProjectName" withExtension:@"momd"]; | |
NSManagedObjectModel *managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL]; | |
NSPersistentStoreCoordinator *persistentStoreCoordinator = | |
[[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:managedObjectModel]; |
NSManagedObjectContext *managedObjectContext = ...; | |
NSFetchRequest *fetchRequest = ...; | |
NSError *error = nil; | |
NSArray *results = [managedObjectContext executeFetchRequest:request error:&error]; | |
if (error) { | |
NSLog(@"Error: %@\n%@", [error localizedDescription], [error userInfo]); | |
return; | |
} |
NSManagedObjectContext *managedObjectContext = ...; | |
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; | |
[fetchRequest setEntity:[NSEntityDescription entityForName:@"Entity" inManagedObjectContext:managedObjectContext]]; | |
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"..."]; | |
[fetchRequest setPredicate:predicate]; | |
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"key" ascending:YES]; | |
[fetchRequest setSortDescriptors:@[sortDescriptor]]; |
NSManagedObjectModel *managedObjectModel = ...; | |
NSFetchRequest *fetchRequest = [managedObjectModel fetchRequestTemplateForName:@"Fetch Request Name"]; |
#import <BugSense-iOS/BugSenseCrashController.h> | |
- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
//... | |
NSDictionary *myCustomData = [NSDictionary dictionaryWithObjectsAndKeys:@"myObject", @"myKey", nil]; | |
BugSenseCrashController *crash = | |
[BugSenseCrashController sharedInstanceWithBugSenseAPIKey:@"<Your BugSense API Key>" | |
userDictionary:myCustomData | |
sendImmediately:NO]; | |
//... |
._* | |
.DS_Store | |
.DS_Store? | |
.Spotlight-V100 | |
.Trashes | |
*~.nib | |
*.lock | |
*.mode1v3 | |
*.mode2v3 |
I hereby claim:
To claim this, I am signing this object: