Skip to content

Instantly share code, notes, and snippets.

View kaishin's full-sized avatar

Reda Lemeden kaishin

View GitHub Profile
@kaishin
kaishin / threadCheck.m
Last active December 27, 2015 14:59
My concurrency homie. Sprinkle some of it inside and around your blocks and concurrency will never come back to haunt you again.
NSLog([NSThread currentThread] == [NSThread mainThread] ? @"❇️ Main thread, it is." : @"♒️ Doesn't look like main thread around here...");
@kaishin
kaishin / asset.m
Created July 1, 2013 10:35
Get statusBar window
UIWindow *statusBar = [[UIApplication sharedApplication] performSelector:@selector(statusBarWindow)];