RSKPlaceholderTextField
  • October 19, 2023

A light-weight UITextView subclass that adds support for placeholder.

Installation


Using Swift Package Manager

  1. To add the RSKPlaceholderTextView package to your Xcode project, select File > Swift Packages > Add Package Dependency and enter the repository URL.

https://github.com/ruslanskorb/RSKPlaceholderTextView.git

Using CocoaPods

  1. Add the pod RSKPlaceholderTextView to your Podfile.

pod ‘RSKPlaceholderTextView’

2. Run pod install from Terminal, then open your app’s .xcworkspace file to launch Xcode.

Using Carthage

  1. Add the ruslanskorb/RSKPlaceholderTextView project to your Cartfile.

github “ruslanskorb/RSKPlaceholderTextView”

2. Run carthage update, then follow the additional steps required to add the iOS and/or Mac frameworks into your project.

Basic Usage


Import the module.

import RSKPlaceholderTextView

Just create a text view and set the placeholder.

override func viewDidLoad() {
super.viewDidLoad()

self.textView = RSKPlaceholderTextView(frame: CGRect(x: 0, y: 20, width: self.view.frame.width, height: 100))
self.textView.placeholder = “What do you want to say about this event?”

self.view.addSubview(self.textView)
}

Demo


Build and run the RSKPlaceholderTextViewExample project in Xcode to see RSKPlaceholderTextView in action. Have fun. Figure out hooks for customization.

GitHub


View Github

#animation #awesemetextfield #carthage #cocoapods #currencytextfield #customtextfield #customwidgets #facetedsearch #geosearch #growingtextview #instantsearch #interfacebuilder #ios #ioslibrary #iosswift #opensource #passwordtextfield #placeholder #placeholdertextview #realmswift #search #searchengine #searchinterface #searchsynonyms #styledtext #swift #swiftframework #swiftlibrary #swiftpackagemanager #swiftui #swiftuicomponents #text #textexpansion #textfield #texture #textview #tjtextfield #ui #uikit #uitextfield #uitextfieldnavigation #uitextview #uitextviewalgolia #widgets
YOU MIGHT ALSO LIKE...
ConfettiView

A SwiftUI View that emits confetti with user-defined shapes, images, and text.

SwiftUI Colour Wheel

A colour wheel made all in SwiftUI. There are 2 different colour wheels to choose from. The first main one ...

ColorPickerRing

A color picker implementation with color wheel appearance written in plain SwiftUI. It is compatible with UIColor and NSColor.

ASCollectionView

This repository is no longer maintained. Here's why: with the release of iOS 16 SwiftUI now enables most of the ...