452Padding with Zeros (or other characters)
int x = 11;
[NSString stringWithFormat:@"%03i", x];
// @"011"
[NSString stringWithFormat:@"%+5i", x];
// @"+++11"
[NSString stringWithFormat:@"%+05i", x];
// @"+0011"
And not really like that. 381. I'll still have to learn a lot of C.