I have an attributedString with image attachments on it, and I need to insert text to it without removing the images. The first thing that I'm doing is detecting at what indexes the images are currently attached.

Below is the code that I'm using, but it is not working all of the time, maybe there is a better way?

 char charTemp;
    for(int i = 0; i < [mutableAttStr.string length]; i++){
        charTemp = [mutableAttStr.string characterAtIndex:i];

        if (!isalpha(charTemp) && !isspace(charTemp) && !iscntrl(charTemp) && !ispunct(charTemp)) {
       //     NSLog(@"isAttachment");
            [attachmentArrayCharIndex addObject:[NSNumber numberWithInt:i]];
        }
    }
link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

First, use unichar, not char.

Second, NSTextAttachment.h declares NSAttachmentCharacter which you can use to determine where an attachment is located in the attributed string.

link|improve this answer
Unichar is a unicode char? What kind Of problems could arise using char? – the Reverend Aug 17 '11 at 20:13
unichar is a 16-bit character type. char is only 8-bit. characterAtIndex: returns a unichar, so if you implicitly cast to char by assignment, you're truncating the high 8 bits, which is never a good thing. – kperryua Aug 17 '11 at 20:17
feedback

Your Answer

 
or
required, but never shown

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