diff --git a/README.md b/README.md index 27a9ed6..94de9c9 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,13 @@ by **Illya Busigin** Purpose -------------- -CYRTextView is a UITextView subclass that implements a variety of features that are relevant to a syntax or code text view. There are many subclasses of UITextView out there with the release of TextKit but none that are specifically tailred towards a code/syntax view. CYRTextView aims to change this. Features include: +CYRTextView is a UITextView subclass that implements a variety of features that are relevant to a syntax or code text view. There are many subclasses of UITextView out there with the release of TextKit but none that are specifically tailored towards a code/syntax view. CYRTextView aims to change this. Features include: - Regular expression based text highlighting with support for multiple text attributes for each expression - Line numbers - Gesture based navigation +Long term, I would like to turn CYRTextView into a full fledged code editor component with code folding, markers, annotation, and more. + Requirements ----------------------------- @@ -27,8 +29,18 @@ To use CYRTextView, just drag the class files into your project and add the Core If you are using Interface Builder, to set the custom properties of CYRTextView (ones that are not supported by regular UIViews) either create an IBOutlet for your view and set the properties in code, or use the User Defined Runtime Attributes feature in Interface Builder (introduced in Xcode 4.2 for iOS 5+). +**NOTE**: The current version (0.2.0) is alpha quality at best. Use at your own risk! + Example --------------- CYRTextView includes an example project that demonstrates how to subclass CYRTextView to provide highlighting behavior for multiple attributes with a default set of normal, bold, and italic fonts. + + +Bugs & Feature Requests +--------------- + +There is **no support** offered with this component. If you would like a feature or find a bug, please submit a feature request through the [GitHub issue tracker](http://github.com/illyabusigin/CYRTextView/issues). + +Pull-requests for bug-fixes and features are welcome!