Files
GitHawk/Local Pods/MessageViewController/MessageViewController/MessageViewControllerAutocompleteDelegate.swift
Ryan Nystrom b3ec648b2a New UITextView control to replace SlackTextViewController (#1307)
* init new text view lib

* autocomplete finding

* autocomplete working

* add caching

* new message VC working
2017-12-24 17:42:11 -05:00

14 lines
306 B
Swift

//
// MessageViewControllerAutocompleteDelegate.swift
// MessageView
//
// Created by Ryan Nystrom on 12/22/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import UIKit
public protocol MessageViewControllerAutocompleteDelegate: class {
func didFind(prefix: String, word: String)
}