Tag: Xcode

  • Xcode Custom Template, A Mysterious Useful Feature

    Xcode Custom Template, A Mysterious Useful Feature

    Xcode template is an ability that allows developers to create projects and files with predefined files and structures automatically. Practically we can also define custom templates to reduce boring repetitive tasks but Apple explains almost nothing about it. Maybe they have not decided to release it publicly yet but I found it very useful in…

  • Xcode Modules, Framework and Libraries Comparison

    Xcode Modules, Framework and Libraries Comparison

    In Xcode, we can define frameworks, static and dynamic libraries and bundles to modularize our codes and resources. Unfortunately it is somewhat vague in Apple documentations. So let’s look at their differences and purposes in a simple word.

  • Diffable Data Source with Clean Architecture

    Diffable Data Source with Clean Architecture

    In WWDC2019, Apple introduced Diffable Data Source as a new approach for providing data for table view and collection views. Apple’s video was explained using an interesting sample project. This article shows how to use diffable data source with clean architecture in mind. To do so, I apply clean architecture to the WiFi settings part…