Tag: xcode

  • Font Awesome, Swift 5 Support With Swift Package Manager (SPM)

    Font Awesome, Swift 5 Support With Swift Package Manager (SPM)

    I wanted to give a try to Swift Package Manager which is build in functionality in Xcode 11. I have to say fantastic! I think in very short future all Git repository will be updated with this package independence manager. Finally we will be able tosay “good bye” to CocoaPod, Cartilage and some many other.…

  • Xcode With Sharp (non-antialias) Fonts On External Monitors

    Xcode With Sharp (non-antialias) Fonts On External Monitors

    Everything is smooth and beautiful on MacBook Pro retina screen but if you’d like to use on external display some times it’s better  not to use  “antialias” for external screen. This is for sharp font setting for Xcode defaults write com.apple.dt.Xcode SourceEditorDisableAntialiasing -bool YES This is the default antialias setting defaults write com.apple.dt.Xcode SourceEditorDisableAntialiasing -bool…

  • Xcode Export Entire Build Log

    In order to determine  a build problem, export the log into text file. Navigate into project, in terminal type line below xcodebuild -project yourproject.xcodeproj -scheme YourBuildScheme -arch arm64 -sdk iphoneos > build-log.txt 2>&1  

  • Xcode Auto Incremental Version And Build Number

    It’s very useful to track version changes during the development and even after release. It allows us to detect the problems belongs to build and/or version. Doing this manually is not easy and boring. I was looking for a solution to make it  automatically. This github resource helped me lot. I don’t know if he’s…