mirror of
https://github.com/wahyd4/Yep.git
synced 2026-08-21 10:46:08 +10:00
17 lines
261 B
Swift
17 lines
261 B
Swift
//
|
|
// ChatTextView.swift
|
|
// Yep
|
|
//
|
|
// Created by NIX on 15/6/26.
|
|
// Copyright (c) 2015年 Catch Inc. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class ChatTextView: UITextView {
|
|
|
|
override func canBecomeFirstResponder() -> Bool {
|
|
return false
|
|
}
|
|
}
|