|
//
// UITextView+GONMarkupParser.h
// GONMarkupParserSample
//
// Created by Nicolas Goutaland on 04/02/15.
// Copyright 2015 Nicolas Goutaland. All rights reserved.
//
#import "GONMarkupParser.h"
@interface UITextView (GONMarkupParser)
/* Update textfield with given text, considering it as a marked up string.
* Given parser will be used to parse string
* If parser is nil, [GONMarkupParserManager sharedParser] will be used
*/
- (void)setMarkedUpText:(NSString *)text parser:(GONMarkupParser *)parser;
/* Update textfield with given text, considering it as a marked up string.
* [GONMarkupParserManager sharedParser] will be used to parse string
*/
- (void)setMarkedUpText:(NSString *)text;
@end
|