How can I concatenate an int
(e.g: 4
) and a string (e.g: @"/12"
) for printing?
I'm okay with casting the int
it to an NSString
format, but I don't know how I can add @"/12"
after the int's value.
How can I concatenate an int
(e.g: 4
) and a string (e.g: @"/12"
) for printing?
I'm okay with casting the int
it to an NSString
format, but I don't know how I can add @"/12"
after the int's value.