This file contains 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
UITableView convenience classes for resizing header and footer with autolayout. |
This file contains 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
A TTTAttributedLabel convenience subclass that uses MMarkdown to parse markdown text. |
This file contains 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
A PageViewController subclass with a configuration block and scroll handling. |
This file contains 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
APP_BUILD_DIR="$TARGET_BUILD_DIR" | |
# CODE_SIGN_CMD="codesign --sign \"$CODE_SIGN_IDENTITY\" --force --verbose=4 {} --keychain enterpriseprogram.keychain" | |
echo "Signing all digital signature stack libraries with identity: '$CODE_SIGN_IDENTITY'" | |
echo "Contents folder path: $APP_BUILD_DIR" | |
echo "Signing files:" | |
find $APP_BUILD_DIR -iname "*.dylib" -exec codesign --sign "$CODE_SIGN_IDENTITY" --force --verbose=4 {} --keychain enterpriseprogram.keychain \; |