Code Monkey home page Code Monkey logo

growingtextviewhandler's Introduction

GrowingTextViewHandler

An NSObject subclass to handle resizing of UITextView as the user types in. The textview resizes as long as the number of lines lies between specified minimum and maximum number of lines. These are the public properties which can be set from the client code.

  • animationDuration : Default 0.5
  • maximumNumberOfLines : Default INT_MAX
  • minimumNumberOfLines : Default 1

#Installation

Add following lines in your pod file for swift 3

pod 'GrowingTextViewHandler-Swift', '1.1'

For older versions, use

pod 'GrowingTextViewHandler-Swift', '1.0.3'

#Usage

First create an instance of GrowingTextViewHandler. It takes an UITextView and its height constraint as arguments. You can specify the maximum and minimum number of lines. Then in the method "textViewDidChange" call the method resizeTextView

var handler:GrowingTextViewHandler?
@IBOutlet weak var aTextView: UITextView!
@IBOutlet weak var heightConstraint: NSLayoutConstraint!
override func viewDidLoad() {
super.viewDidLoad()
self.handler? = GrowingTextViewHandler(textView: self.aTextView, heightConstraint: heightConstraint)
self.handler?.minimumNumberOfLines = 2
self.handler?.maximumNumberOfLines = 6
}

func textViewDidChange(textView: UITextView) {
self.handler?.resizeTextView(animated:true)
}

However when you set text programmatically, textViewDidChange(textView: UITextView) does not get called. For this case you can resize UITextView as follows:

self.handler?.setText("Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", animated: true)

Screenshots

growingtextviewhandler's People

Contributors

hsusmita avatar anfriis avatar lahoda avatar

Watchers

Actiwerks avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.