I am trying to display a string in UILabel and UItextView but its not coming properly.This is my string
\|/
`--+--'
/|\
' | '
|
|
,--'#`--.
|#######|
_.-'#######`-._
,-'###############`-.
,'#####################`,
/#########################\
|###########################|
|#############################|
|#############################|
|#############################|
|#############################|
|###########################|
\#########################/
`.#####################,'
`._###############_,'
`--..#####..--'
but its coming properly in NSlog message.
I am fetching from Database
NSString *image_string = [[NSString alloc] initWithUTF8String:(const char *) sqlite3_column_text(statement, 0)];
image_string=[image_string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
textView.text = image_string;