This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| [ | |
| // Goto Symbol | |
| { "keys": ["ctrl+alt+r"], "command": "goto_symbol_in_index"} | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // NBResponderChainUtilities.h | |
| // | |
| // Created by Nicolas @ bou.io on 19/04/13. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface UIView (NBResponderChainUtilities) | |
| - (UIView*) nb_firstResponder; // Recurse into subviews to find one that responds YES to -isFirstResponder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # defaults commands with com.apple.iphonesimulator | |
| # usage in detail will show with `defaults` without any arguments | |
| # this sets default simulator device to iPhone | |
| defaults write com.apple.iphonesimulator SimulateDevice -string "iPhone" | |
| defaults write com.apple.iphonesimulator SimulateSDKRoot -string "${SDKROOT_iphonesimulator}" | |
| # this sets default simulator device to iPad | |
| defaults write com.apple.iphonesimulator SimulateDevice -string "iPad" | |
| defaults write com.apple.iphonesimulator SimulateSDKRoot -string "${SDKROOT_iphonesimulator_ipad}" |
NewerOlder