Tag: Swift
Swift is a powerful and intuitive programming language developed by Apple for building applications for iOS, macOS, watchOS, and tvOS.
-
Swift: how to create a Singleton pattern
What is a Singleton? A singleton pattern guarantees that only one instance of a class is initialized and available from different points of an app. Some examples are already available in Apple’s frameworks: How to define a Singleton Often a static constant is used to adopt the Singleton pattern. To do that the reference to…
-
Swift: Audioaufnahmen mit AVAudioRecorder
In Swift lassen sich Audioaufnahmen sehr komfortabel und einfach über die Klasse AVAudioRecorder realisieren. Beim Initialisieren der Klasse lassen sich bereits Codec, Samplerate, Anzahl der Kanäle und einige andere wichtige Einstellungen festlegen. Hier ein einfaches Code-Beispiel: