The first step you need to preform is to create a NSMutableAttributedString object. The reason we create a NSMutableAttributedString instead of NSAttributedString is because it enables us to append string to it.
NSString *fullStr = @"Hello World!";
NSMutableAttributedString *attString =[...