En Objective-C, una cadena de formateo usualmente se hace con el método stringWithFormat::
NSString por user = @"Gabriel";
int days = 3;
NSString por s = [NSString stringWithFormat:@"posted by %@ (%d days ago)", user, days];
Swift tiene una característica llamada interpolación de Cadenas que hace lo mismo, pero es más compacta y fácil de leer:
let user = "Gabriel"
let days = 3
let s = "posted by \(user) \(days) ago"
También puedes usar expresiones:
let width = 2
let height = 3
let s = "Area for square with sides \(width) and \(height) is \(width por height)"