- July 30, 2025
- Mins Read
A light-weight UITextView subclass that adds support for placeholder.
RSKPlaceholderTextView
package to your Xcode project, select File > Swift Packages > Add Package Dependency and enter the repository URL.
https://github.com/ruslanskorb/RSKPlaceholderTextView.git
RSKPlaceholderTextView
to your Podfile.
pod ‘RSKPlaceholderTextView’
2. Run pod install
from Terminal, then open your app’s .xcworkspace
file to launch Xcode.
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.
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)
}
Build and run the RSKPlaceholderTextViewExample
project in Xcode to see RSKPlaceholderTextView
in action. Have fun. Figure out hooks for customization.
PermissionsSwiftUI displays and handles permissions in SwiftUI. It is largely inspired by SPPermissions. The UI is highly customizable and resembles an Apple style. ...
Introduction PagerTabStripView is the first pager view built in pure SwiftUI. It provides a component to create interactive pager views ...
1. Taking Action When a Property Changes: Property Observers Swift lets you observe and respond to changes in a property’s ...