Initial commit

This commit is contained in:
Drew Olbrich
2019-02-03 12:22:40 -08:00
commit 64e4ae6a9c
99 changed files with 17449 additions and 0 deletions
@@ -0,0 +1,23 @@
//
// SecondViewController.swift
// SequenceExample
//
// Created by Drew Olbrich on 1/13/19.
// Copyright 2019 Oath Inc.
//
// Licensed under the terms of the MIT License. See the file LICENSE for the full terms.
//
import UIKit
class SecondViewController: SequenceViewController {
override var shouldAssignFirstResponder: Bool {
return true
}
override func didTapReturnKey() {
performSegue(withIdentifier: "next", sender: nil)
}
}