swift– tag –
-
Development
How to use binary representation of floating point numbers in Swift
To store floating-point numbers in binary files or binary data buffers, they are encoded as defined by IEEE 754; in Swift, the BinaryFloatingPoint protocol defines methods, etc., to support IEEE 754. For example, float, Double, and Float... -
Development
Converting Integer Types with Bit Patterns in Swift
To maintain bit patterns while converting integer types in Swift, utilize the provided initializer. init<T>(truncatingIfNeeded source: T) where T : BinaryInteger You can employ this initializer method to convert between unsigned an... -
Development
Refine Objective-C code for Swift
macOS applications often need to leverage historical processes and existing code, as numerous tasks cannot be accomplished using only Swift. Therefore, Objective-C code and C/C++ code coexist. When writing code where multiple languages c... -
Development
iPadで学ぶ はじめてのプログラミング (Japanese Edition Only)
This book is only available in Japanese. 「iPadで学ぶ はじめてのプログラミング」というタイトルの本を執筆しました。iPadで「Swift Playgrounds」を使ってプログラミングをするという本です。スクリーンキャプチャとイラストを多用して、操作方法を... -
Development
Swift逆引きハンドブック (Japanese Edition Only)
This book is only available in Japanese. 「Swift逆引きハンドブック」を執筆しました。「Swiftではどのように書けばよいのか?」ということから調べることができる逆引き辞典です。Swiftの言語としての機能や標準ライブラリ、Foundationフレームワーク...
1