Basically, I have a share button that pulls up a compose email modal view. I want to add a tab space in my NSStringWithFormat. Lets call it "postText". When I try to set a space like this:
NSString *postText = [NSString stringWithFormat:@"\tHello, World! %@",myPointer];
it doesn't insert anything (It returns "Hello, World! myPointerValue"), and if I just use tab, it messes up the spacing because I need to use tab about 10-20 times. Am I doing something wrong?