lunes, 5 de diciembre de 2011

¿Cómo convierto un int a un NSString?


Una de las formas es mediante un método de NSString
[NSString stringWithFormat:@”%i” , elentero]

¿Y de NSString a float o a int?
La clase NSString tiene métodos para esto uno es floatValue y el otro intValue.
 NSString *aNumberString = @"35";
 int i = [aNumberString intValue];

No hay comentarios: