Fix “Some files could not be transferred (code 23)“ error in Xcode
Error rsync error: some files could not be transferred (code 23) Complete error rsync error: some files could not be transferred (code 23) at /AppleInternal/BuildRoot/Library/Caches/com.apple.bs/ Sources/rsync/rsync-54.120. 1/rsync/main. c (996) [sender=2.6.9] Command PhaseScriptExecution failed with a nonzero exit code Problem This error happens because there is…
Fix “Build input file cannot be found” error in Xcode
Error Build input file cannot be found Complete error Build input file cannot be found: ‘path/to/file’. Did you forget to declare this file as an output of a script phase or custom build rule which produces it? Problem This pretty not understandable error can happen…
Error “Missing file libarclite” (Xcode 14.3)
Error File not found: libarclite_iphone.a + Linker command failed Complete error: File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a Linker command failed with exit code 1 (use -v to see invocation) Problem This is error is connected to 3rd party libraries that have a minimum deployment target less than…
How To Take an Xcode Simulator Screenshot without Shadows
Adding a bezel to a screenshot may be a cumbersome task. Wouldn’t it be better to just take a screenshot of your app embedded in a bezel? This is possible and really easy. Let’s see how. Take the screenshot The problem with taking a screenshot…
How to Create Swift Macros with Xcode 15
What are Macros? Swift Macros allow you to generate repetitive code at compile time, making your app’s codebase more easier to read and less tedious to write. There are two types of macros: Freestanding macros stand in place of something else in your code. They…
All the New Features in Xcode 15
Xcode 15 comes with many new helpful features that will help speed up your development process. And with a long waited new debugger filters by log category. Here is a list of all the new features of Xcode 15. Editing class struct name completion based…
Format functions to multiple lines in Xcode 15
Xcode 15 introduced a nice shortcut that converts functions with many parameters on a single line to a function that has any parameter on its own line. Usage The below function can be hard to read since all the arguments are on the same line….
Autocompletion for Images and Colours in Xcode 15
Xcode 15 offers a new really cool feature. The ability to generate assets symbols automatically without any third-party library like R.swift or SwiftGen. So, colors and images resources are now generated by Xcode without any additional work. This is really handy since it avoids typos…