Skip to content

Latest commit

 

History

History
62 lines (32 loc) · 3.97 KB

readme.md

File metadata and controls

62 lines (32 loc) · 3.97 KB

Counties Sample App

Platform

The Counties sample app is the host for iOS, Apple Watch, and tvOS tutorials hosted on darjeelingsteve.com. The areas of development covered are as follows:

Adaptive UI

Support for advanced multi-window user interfaces on iPadOS.

Adaptive UI

This tutorial demontrates how to create user interfaces that adapt between different user interface environments using modern APIs.

Describes how to build a data model backed by NSUbiquitousKeyValueStore to provide iCloud support for user data, as well as techniques for fully unit testing the implementation.

Allowing Handoff of tasks from Apple Watch to iPhone is detailed in this post.

Adding Handoff from iPhone to iPad, and vica versa. This is very simple once Handoff from Aple Watch to iPhone has been implemented.

Adaptive UI

Here we detail how to add an application's data set to the on-device Spotlight Search index to allow the user to search the app's content from the iOS system search UI.

Both UICollectionView and UITableView received significant updates at WWDC 2019, one of which was a new way to supply said views with the data that they display. This article goes in to the detail of refactoring a view controller conforming to UICollectionViewDataSource to using a UICollectionViewDiffableDataSource instead.

Adaptive UI

This tutorial details the process of allowing your app to continue Spotlight searches that the user initiates in the system search UI. This involves directly querying the Spotlight index, something which only became possible in iOS 10.

Here we learn how to add 3D Touch Peek and Pop navigation to the app. As well as the navigation, we also see how to add shortcut action items for the "Peek" stage of the navigation.

Adding 3D Touch Application Shortcuts is easy, as we see in this tutorial.