If you want to check, what controller is on the top right now, with this code all what you need is to minimize app and restore it again. And you will see an alert with the title of Controller. APPDELEGATE #import "UIViewController+Top.h" - (void)applicationWillEnterForeground:(UIApplication *)application { #ifdef DEBUG NSString *topController = NSStringFromClass([[UIViewController topViewController] class]); [[[UIAlertView alloc] initWithTitle:topController message:nil delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil] show]; #endif } CATEGORY @interface UIViewController (Top) + (UIViewController *)topViewController; @end #import "UIViewController+Top.h" @implementation UIViewController (Top) + (UIViewController *)topViewController { UIViewController *rootViewController = [UIApplication sharedApplication].keyWindow.rootViewController; return [rootViewCont...
First do this If you're running this on OS X 10.11 like I am, you'll need to run sudo /usr/libexec/xpccachectl in terminal and reboot before Xcode will even attempt to load your extensions. It has something to do with new SDKs being installed and the XPC service in El Capitan not expecting it. Then choose there https://github.com/tib/awesome-xcode-extensions
Watch what shortcuts there are already: Terminal -> Alt+Cmd+G -> /usr/local/bin Add sublime ln -s "/Applications/ Sublime Text .app/Contents/SharedSupport/bin/subl" /usr/local/bin/ subl *bold text can change
Комментарии
Отправить комментарий