Skip to content

Instantly share code, notes, and snippets.

View russell-archer's full-sized avatar
🏠
Working from home

Russell Archer russell-archer

🏠
Working from home
View GitHub Profile
@russell-archer
russell-archer / Info.plist
Created August 30, 2018 18:17
Demo of Siri shortcuts for iOS 12 using NSUserActivity
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
:
<key>NSUserActivityTypes</key>
<array>
<string>ShowPictureOfIntent</string>
<string>com.rarcher.PicSearch.showPic</string>
</array>
@russell-archer
russell-archer / ViewController.swift
Last active August 31, 2018 18:05
Demo of Siri shortcuts for iOS 12 using NSUserActivity
//
// ViewController.swift
// PicSearch
//
// Created by Russell Archer on 22/08/2018.
// Copyright © 2018 Russell Archer. All rights reserved.
//
import UIKit
import Intents
@russell-archer
russell-archer / AppDelegate.swift
Last active September 3, 2018 23:58
Demo of Siri shortcuts for iOS 12 using NSUserActivity
//
// AppDelegate.swift
// PicSearch
//
// Created by Russell Archer on 22/08/2018.
// Copyright © 2018 Russell Archer. All rights reserved.
//
import UIKit