- August 28, 2025
- Mins Read
A UITextView subclass that adds support for multiline placeholder written in Swift.
You can set the value of the placeholder
property just like using UITextField.
KMPlaceholderTextView
.placeholder
property directly.
let placeholderTextView = KMPlaceholderTextView(frame: view.bounds)
placeholderTextView.placeholder = “What’s on your mind?”
view.addSubview(placeholderTextView)
You can install the latest release version of CocoaPods with the following command:
$ gem install cocoapods
Simply add the following line to your Podfile:
platform :ios, ‘8.0’
use_frameworks!
target ‘<Your Target Name>’ do
pod ‘KMPlaceholderTextView’, ‘~> 1.4.0’
end
Then, run the following command:
$ pod install
If you are encountering the following warning when using Xcode 8, please make sure to set the Module in the identity inspector of your KMPlaceholderTextView
in the interface builder to KMPlaceholderTextView
as well:
warning: IB Designables: Using class UITextView for object with custom class because the class KMPlaceholderTextView does not exist
Carthage is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate KMPlaceholderTextView into your Xcode project using Carthage, specify it in your Cartfile
:
github “MoZhouqi/KMPlaceholderTextView” >= 1.4
This package provides you with an easy way to show tooltips over any SwiftUI view, since Apple does not provide ...
SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications inside iOS or ...
Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage. SSToastMessage enables you to effortlessly add toast notifications, alerts, and ...