Xcode– category –
-
Check build environment from Info.plist
After an application or library is released, when bugs need to be corrected, the build environment of that time may be required. Usually, using the latest version of the environment at the time of the correction is not a problem. However... -
About iOS Developer Mode
Developer mode was introduced with iOS 15. When developer mode is turned off, you cannot develop apps using the actual device, such as installing and debugging an app under development. This article explains how to turn on developer mode... -
Setting up a GitLab account on Xcode
Once you have set up a GitLab account in Xcode, you can access GitLab repositories directly from Xcode. This article explains how to set up a GitLab account in Xcode. 【Generate a personal access token】 To access GitLab from Xcode, you ... -
Setting up a GitHub account on Xcode
Once you set up a GitHub account in Xcode, you can access GitHub repositories directly from Xcode. This article explains how to set up a GitHub account in Xcode. 【Generate the access token】 To access GitHub with Xcode, you need an acce... -
What to do when you can’t run iOS simulator on Apple Silicon Mac (arm64 binary error)
Depending on the framework incorporated into the application, the following error may occur and prevent the iOS simulator from running on an Apple Silicon Mac. ld: in /Volumes/Data/src/RK/TechGakuWebSite/SampleCodes/OpenCVTest_iOS/common... -
Setup Xcode
We use the Xcode to develop applications for the Apple Platform. This article introduce things to start developing. 【Register to the Apple Developer Program】 If you just want to develop an app, get documentation and sample code, and ru... -
Configure the code signing setting of the Xcode project with the configuration settings file
When you are working on an iOS app project file and plan to distribute it as open source or sample code, you may not want to set code signing settings in the project file. However, while working locally, you need to set the code signing ... -
Change the search path in the Xcode project with the configuration settings file
Depending on the application you are developing, you may need an SDK or other software that you do not control, and while the installation path for the SDK will often be roughly the same, if it can be placed in an arbitrary location, the... -
Define common macros across Xcode projects
When you develop the module which consists of multiple libraries and/or programs such as SDK, you would like to define the common macros are referenced by multiple projects. For example, when you develop the SDK for communicating with th... -
How To Create the Xcode Configuration Settings File
The configuration of the Xcode project is saved into the project file (*.xcodeproj). It is enough for the normal scale application development, but if you develop the middle or large scale application, it may be not enought. You may want...
12