-
Development
Setup Xcode
We use Xcode to develop applications for the App Platform. This article provides an introduction to getting started with development. Register to the Apple Developer Program If you aim to develop an app, access documentation and sample c... -
開発
Xcodeをセットアップする
Apple Platformのアプリ開発にはXcodeを使用します。この記事では、まず始めるために必要な準備を紹介します。 Apple Developer Programへの登録について アプリの開発とドキュメントやサンプルコードの入手、自己所有のデバイス上での開発したアプリの実... -
Development
How to export digital certificates on Mac
Mac utilizes Keychain Access for managing installed digital certificates. In addition, Keychain Access manages digital certificates and the following information. Accounts (ID and Password) Secret Memos Degital certificates Public keys P... -
開発
Macで電子証明書を書き出す方法
Macでは、インストールされた電子証明書はキーチェーンアクセスによって管理されています。キーチェーンアクセスは電子証明書だけではなく、以下の様な情報を管理しています。 アカウント情報(IDとパスワード) 秘密のメモ 電子証明書 公開鍵 秘密鍵 この... -
お知らせ
テックブログについて
テックブログですが、本サイトに再統合することになりました。 ここのところ、こちらのブログの更新が少ないのですが、理由はテックブログに力を入れています。 以前、別ブログとして立ち上げた「現役のプログラマーが書く プログラミング情報」というブ... -
Development
Configure the code signing setting of the Xcode project with the configuration settings file
When developing an iOS app that you plan to distribute as open source or sample code, you might prefer not to embed code signing settings directly into the project file. However, while working locally, you must set the code signing setti... -
開発
ビルド設定ファイルを使ってXcodeのコードサイニングを設定する
iOSアプリのプロジェクトファイルを、オープンソースやサンプルコードなどとして配布する予定のときには、コードサイニングの設定をプロジェクトファイルに設定したくないことがあります。しかし、ローカルで作業中はコードサイニングの設定を行わないと、... -
Development
Archive only changed files from the Git repository
Git is a version control system that manages the changed history of files. Thanks to this feature, anyone who cloned the same repository can merge changes made by other users. What to do when sending the only changes files to others? Sup... -
開発
Gitから変更されたファイルだけ取り出す方法
Gitはファイルの履歴を管理しています。この機能のおかげで同じリポジトリを参照する人は、別の人が行った変更を取り込むことができます。 変更内容を別の人に渡したいときに、リポジトリに直接アクセスできる人はGitの機能を使ってもらえば良いのですが、... -
Development
Change the search path in the Xcode project with the configuration settings file
Depending on your application requirements, you might require an SDK or software beyond your control. Although the SDK's installation path tends to be consistent, it could vary based on the machine or the developer's preferences. In such... -
開発
ビルド設定ファイルでXcodeの検索パスを変更する
開発しているアプリによっては、自身で管理していないSDKなどの使用が必要となることがあります。SDKのインストールパスは大体同じ場合が多いと思いますが、任意の場所にインストール可能な場合、マシンや開発者によってインストール先が異なる場合もあり... -
Development
Create the PDF has bookmarks (TOC) with Microsoft Word
The recent version of Microsoft Word has a PDF exporter, making it easy to create the PDF. The PDF is very useful. Even if the user doesn't have the software which is used to make the documents can view or print them out. Create a PDF th... -
開発
Wordでしおり(目次)を持ったPDFを作る方法
最近のバージョンのWordにはPDF出力機能が入っていて、簡単にPDFを作れます。資料を作成したアプリを持っていない人でも、PDFにして渡せば開いたり印刷することができるため非常に便利です。 PDFを出力するときに一工夫すると、Adobe Acrobat Readerのしお... -
Development
Define common macros across Xcode projects
When you develop a module consisting of multiple libraries and programs such as SDK, you can define the common macros referenced by multiple projects. For example, when you develop the SDK for communicating with a specific device, suppos... -
開発
Xcodeでプロジェクト間共通のマクロを定義する
SDKなどの複数のライブラリやプログラムで構成されるモジュールを開発しているときなど、複数のプロジェクト間で共通のマクロ定義を参照することがあります。 たとえば、ある特定の機器と通信するSDKを開発しているときに、対象となる機器によって定数を切... -
Development
How To Create the Xcode Configuration Settings File
The Xcode project configuration is saved in the project file (*.xcodeproj). It is enough for normal-scale application development, but if you develop a middle or large-scale application, you may need more. Moreover, you would like to hav... -
開発
Xcodeの設定ファイルの作成方法
Xcodeで設定するビルド設定はプロジェクトファイル(*.xcodeproj)に保存されます。通常のアプリ開発ではこれだけで十分なのですが、中規模以上の開発を行っているときや特殊なプログラムを作っているときなどは、もう少し柔軟に制御したいことがあります... -
Development
Backup certificates and keys for Xcode
Certificates and keys generated by the Apple Developer Program are saved on your machine. This is because they are needed for development. Therefore, I back them up and restore them when I initialize my machines. This article explains ho... -
開発
Xcodeの証明書などのバックアップ
iOSアプリなどのApple Platform向けの開発をしていると、Apple Developer Programで発行された電子証明書など、コードサイニングに必要な情報がマシンに保存されています。私の場合は、これらの証明書をバックアップしておいて、Macを初期化したときや別の... -
Development
Create the window for SwiftUI with the AppKit
The Xcode 13.4.1 on macOS Monterery 12.4 can use only WindowGroup and DocumentGroup to implement the window generation in SwiftUI, so we can't create the single window application. You can't implement the all of the items in the menu bar...
