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
| buildNumber=$(/usr/libexec/PlistBuddy -c "Print CWBuildNumber" ${PROJECT_DIR}/TestIncrement/TestIncrement-Info.plist) | |
| buildNumber=$(($buildNumber + 1)) | |
| /usr/libexec/PlistBuddy -c "Set :CWBuildNumber $buildNumber" ${PROJECT_DIR}/TestIncrement/TestIncrement-Info.plist |
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
| # необходимы установленные пакеты imagemagick и ghostscript | |
| # если у нас релизная сборка, то нам нужна обычная иконка | |
| if [ $CONFIGURATION = "Release" ]; then | |
| return | |
| fi | |
| # номер версии | |
| version=`/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "${INFOPLIST_FILE}"` | |
| # номер билда | |
| build=`/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "${INFOPLIST_FILE}"` |
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
| + (UIColor *)colorWithHex:(NSString *)hexColor | |
| { | |
| // Remove the hash if it exists | |
| hexColor = [hexColor stringByReplacingOccurrencesOfString:@"#" withString:@""]; | |
| int length = (int)[hexColor length]; | |
| bool triple = (length == 3); | |
| NSMutableArray *rgb = [[NSMutableArray alloc] init]; | |
| // Make sure the string is three or six characters long | |
| if (triple || length == 6) { | |
| CFIndex i = 0; |
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
| + (instancetype)handler | |
| { | |
| __strong static id *_sharedInstance = nil; | |
| static dispatch_once_t onlyOnce; | |
| dispatch_once(&onlyOnce, ^{ | |
| _sharedInstance = [[self _alloc] _init]; | |
| }); | |
| return _sharedInstance; | |
| } |
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
| NSString *str = <#some string#>; | |
| CGSize size; | |
| CGSize maxSize = CGSizeMake(<#width#>, <#height#>); | |
| UIFont *font = <#font#>; | |
| if ([str respondsToSelector:@selector(boundingRectWithSize:options:attributes:context:)]) { | |
| NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init]; | |
| [style setLineBreakMode:<#Line break mode#>]; | |
| [style setAlignment:<#String alignment#>]; | |
| NSDictionary *attributes = @{ NSFontAttributeName:font, | |
| NSParagraphStyleAttributeName:style |
NewerOlder