mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-09 06:38:24 +08:00
* init new text view lib * autocomplete finding * autocomplete working * add caching * new message VC working
14 lines
306 B
Swift
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)
|
|
}
|