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
Color themes: ~/Library/Developer/Xcode/UserData/FontAndColorThemes | |
Code Snippets: ~/Library/Developer/Xcode/UserData/CodeSnippets | |
Source: https://stackoverflow.com/questions/10172336/how-can-i-install-themes-on-xcode-4-3-2 |
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
otool -L <path> | |
nm -u <path> | |
strings <path> |
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
1. In the framework target's build settings, set "Skip Install" to NO | |
2. Select the framework and archive it | |
3. Export the archive's "Built Products" to obtain the framework | |
Link: https://stackoverflow.com/questions/33580528/xcode-7-1-swift-framework-app-builds-but-not-archiving/33581287 | |
-- |
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
You can edit the order of view controllers anytime using: | |
- (void)setViewControllers:(NSArray<UIViewController *> *)viewControllers animated:(BOOL)animated; |
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
http://elliotchance.postach.io/post/incrementing-the-xcode-build-number | |
http://crunchybagel.com/auto-incrementing-build-numbers-in-xcode/ |
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
// set evenly spaced views using autolayout | |
http://stackoverflow.com/a/30249550 | |
// change app icon at runtime | |
https://www.raywenderlich.com/105641/change-app-icon-build-time | |
// handle local and server builds using targets | |
http://www.appcoda.com/using-xcode-targets/ | |
// hide back button 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
- https://webrtc.org/architecture | |
- http://webrtc-security.github.io | |
- https://github.com/ISBX/apprtc-ios |
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
BFG Repo Cleaner: | |
https://rtyley.github.io/bfg-repo-cleaner |
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
post_install do |installer| | |
installer.pods_project.targets.each do |target| | |
target.build_configurations.each do |config| | |
config.build_settings['ENABLE_BITCODE'] = 'NO' | |
end | |
end | |
end |
NewerOlder