mirror of
https://github.com/HackPlan/IQKeyboardManager.git
synced 2026-06-18 20:06:28 +08:00
126 lines
4.1 KiB
Swift
126 lines
4.1 KiB
Swift
//
|
|
// IQTextView.swift
|
|
// https://github.com/hackiftekhar/IQKeyboardManager
|
|
// Copyright (c) 2013-15 Iftekhar Qurashi.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
|
|
import UIKit
|
|
|
|
/** @abstract UITextView with placeholder support */
|
|
class IQTextView : UITextView {
|
|
|
|
required init(coder aDecoder: NSCoder) {
|
|
super.init(coder: aDecoder)
|
|
NSNotificationCenter.defaultCenter().addObserver(self, selector: "refreshPlaceholder", name: UITextViewTextDidChangeNotification, object: self)
|
|
}
|
|
|
|
override init(frame: CGRect, textContainer: NSTextContainer?) {
|
|
super.init(frame: frame, textContainer: textContainer)
|
|
NSNotificationCenter.defaultCenter().addObserver(self, selector: "refreshPlaceholder", name: UITextViewTextDidChangeNotification, object: self)
|
|
}
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
NSNotificationCenter.defaultCenter().addObserver(self, selector: "refreshPlaceholder", name: UITextViewTextDidChangeNotification, object: self)
|
|
}
|
|
|
|
deinit {
|
|
NSNotificationCenter.defaultCenter().removeObserver(self)
|
|
}
|
|
|
|
private var placeholderLabel: UILabel?
|
|
|
|
/** @abstract To set textView's placeholder text. Default is ni. */
|
|
var placeholder : String? {
|
|
|
|
get {
|
|
return placeholderLabel?.text
|
|
}
|
|
|
|
set {
|
|
|
|
if placeholderLabel == nil {
|
|
|
|
placeholderLabel = UILabel(frame: CGRectInset(self.bounds, 5, 0))
|
|
|
|
if let unwrappedPlaceholderLabel = placeholderLabel {
|
|
|
|
unwrappedPlaceholderLabel.autoresizingMask = .FlexibleWidth | .FlexibleHeight
|
|
unwrappedPlaceholderLabel.lineBreakMode = .ByWordWrapping
|
|
unwrappedPlaceholderLabel.numberOfLines = 0
|
|
unwrappedPlaceholderLabel.font = self.font
|
|
unwrappedPlaceholderLabel.backgroundColor = UIColor.clearColor()
|
|
unwrappedPlaceholderLabel.textColor = UIColor(white: 0.7, alpha: 1.0)
|
|
unwrappedPlaceholderLabel.alpha = 0
|
|
addSubview(unwrappedPlaceholderLabel)
|
|
}
|
|
}
|
|
|
|
placeholderLabel?.text = newValue
|
|
refreshPlaceholder()
|
|
}
|
|
}
|
|
|
|
private func refreshPlaceholder() {
|
|
|
|
if count(text) != 0 {
|
|
placeholderLabel?.alpha = 0
|
|
} else {
|
|
placeholderLabel?.alpha = 1
|
|
}
|
|
}
|
|
|
|
override var text: String! {
|
|
|
|
didSet {
|
|
|
|
refreshPlaceholder()
|
|
|
|
}
|
|
}
|
|
|
|
override var font : UIFont? {
|
|
|
|
didSet {
|
|
|
|
if let unwrappedFont = font {
|
|
placeholderLabel?.font = unwrappedFont
|
|
} else {
|
|
placeholderLabel?.font = UIFont.systemFontOfSize(12)
|
|
}
|
|
}
|
|
}
|
|
|
|
override var delegate : UITextViewDelegate? {
|
|
|
|
get {
|
|
refreshPlaceholder()
|
|
return super.delegate
|
|
}
|
|
|
|
set {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|