cameronpriest / ExpandableTextArea

Expandable Text Area Module - iOS - Titanium

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Most of the magic code taken from: http://www.hanspinckaers.com/multi-line-uitextview-similar-to-sms

Please, for a demo, look at this: http://www.screenr.com/wVCs

INSTALL YOUR MODULE
--------------------

1. Run `build.py` which creates your distribution
2. cd to `/Library/Application Support/Titanium`
3. copy this zip file into the folder of your Titanium SDK

REGISTER YOUR MODULE
---------------------

Register your module with your application by editing `tiapp.xml` and adding your module.
Example:

<modules>
	<module version="1.0">ti.smsview</module>
</modules>

When you run your project, the compiler will know automatically compile in your module
dependencies and copy appropriate image assets into the application.

USING YOUR MODULE IN CODE
-------------------------

To use your module in code, you will need to require it. 

For example,

	Titanium.SMSView = require('ti.smsview');
	var smsView = Ti.SMSView.createView();

Take a look in the documentation folder for details

About

Expandable Text Area Module - iOS - Titanium

License:Other