Sunday, February 6, 2011

Continue a String onto the next line

If you have a long string you may want to split it up into multiple lines to make it easier to read.  To do this, you can do the following:


    NSString * const TEXT = @"This is the first of many words"
                             " and will continue here";

1 comment: