In the title view of my view controller, I have this string:
@"the guy 1137937485"
Is there a way to hide the number, or in other words hide the last 10 characters of the string? By hide I do not mean delete. I still need the characters; I just want the user to not see them. The numbers are random but always 10 characters.
Just create a new
NSStringwithout the last 10 characters.