Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| // | |
| // RoundedRectLabel.h | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface CountLabel : UILabel { | |
| NSInteger cornerRadius; | |
| UIColor *rectColor; | |
| } |
| #!/bin/bash | |
| # | |
| # (Above line comes out when placing in Xcode scheme) | |
| # | |
| API_TOKEN=<TestFlight API token here> | |
| TEAM_TOKEN=<TestFlight team token here> | |
| SIGNING_IDENTITY="iPhone Distribution: Development Seed" | |
| PROVISIONING_PROFILE="${HOME}/Library/MobileDevice/Provisioning Profiles/MapBox Ad Hoc.mobileprovision" | |
| #LOG="/tmp/testflight.log" |
| #!/bin/bash | |
| # | |
| # (Above line comes out when placing in Xcode scheme) | |
| # | |
| # Inspired by original script by incanus: | |
| # https://gist.github.com/1186990 | |
| # | |
| # Rewritten by martijnthe: | |
| # https://gist.github.com/1379127 | |
| # |
| #!/bin/bash | |
| if [[ $CONFIGURATION == *Adhoc* ]]; then | |
| buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" ${PROJECT_DIR}/${INFOPLIST_FILE}) | |
| buildNumber=$(($buildNumber + 1)) | |
| /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" ${PROJECT_DIR}/${INFOPLIST_FILE} | |
| fi |
| #import <UIKit/UIKit.h> | |
| #define kSCNavigationBarBackgroundImageTag 6183746 | |
| #define kSCNavigationBarTintColor [UIColor colorWithRed:0.54 green:0.18 blue:0.03 alpha:1.0] | |
| @interface SCAppUtils : NSObject | |
| { | |
| } | |
| + (void)customizeNavigationController:(UINavigationController *)navController; |