I have a small piece of code (Example Below) which is well formated with Tab's and new lines. But when I view this code on a text view it does not show the tab's, but it does show the new lines.
What do I need to do to make sure the text is tabbed.
Thanks for the help.
PHP:
@interface Animal : NSObject
{
NSString *name;
NSString *description;
NSString *imageURL;
}
What do I need to do to make sure the text is tabbed.
Thanks for the help.