I have a very simple question. Is there a built in method to shorten strings? If not can someone provide an example of doing that in ObjC?

For example:

ThisIsAVeryLongString

should become

ThisIsAV...

It needs to check if the string is over a certain amount of characters and if it is shorten it.

link|improve this question

7  
If you're doing this to display a truncated string, the just be aware that many UI elements will do this for you already (NSTextField, UILabel, and many others). Are you sure you need to do this manually? – Dave DeLong Jul 21 '10 at 19:54
feedback

2 Answers

up vote 3 down vote accepted

It's pretty straightforward...

NSString *originalString = @"SomethingVeryLong";
int newLength = 9;
if (originalString.length > newLength)
    NSString *shortString = [originalString substringToIndex:newLength];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.