MultilineTextField

1.0.0

Multiline Text Field - UITextField with multiple lines or UITextView with placeholder
rlaguilar/MultilineTextField

What's New

Support Swift Package Manager

2020-02-08T15:18:55Z

MultilineTextField

CI Status Version License Platform

This can be seen as a UITextField with multiple lines, but under the hood it is just a UITextView which aims to provide many of the functionalities currently available in the UITextField class. Currently the following functionalities are supported:

  • Multiple lines
  • Customizable left view
  • Customizable placeholder text

Usage

Via storyboards

Add a UITextView and set its custom class to MultilineTextField. From the storyboard you can customize the placeholder text and also an image to be shown at the left of the field text.

Via code

First of all you have to import the library import MultilineTextField.

After that just create an instance of the view an customize its properties:

let textField = MultiplelineTextField(frame: textFieldFrame)
textField.leftView = UIImageView(image: image)
// or use the convenience property:
// textField.leftImage to assign an image directly

// below are properties that can be optionally customized
textField.placeholder = "This is my placeholder"
textField.placeholderColor = UIColor.red
textField.isPlaceholderScrollEnabled = true
textField.leftViewOrigin = CGPoint(x: 8, y: 8)
someView.addSubview(textField)

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

It requires Swift 4 and Xcode 9 or above

Installation

MultilineTextField is available through Swift Package Manager and also CocoaPods.

Swift Package Manager

Select File > Swift Packages > Add Package Dependency. Enter https://github.com/rlaguilar/MultilineTextField.git in the "Choose Package Repository" dialog.

CocoaPods

Simply add the following line to your Podfile:

pod 'MultilineTextField'

Author

Reynaldo Aguilar, rlaguilar

License

MultilineTextField is available under the MIT license. See the LICENSE file for more info.

Description

  • Swift Tools 5.1.0
View More Packages from this Author

Dependencies

  • None
Last updated: Fri Mar 29 2024 03:29:52 GMT-0900 (Hawaii-Aleutian Daylight Time)