All pastes #2046945 Raw Edit

Untitled

public text v1 · immutable
#2046945 ·published 2011-04-15 20:45 UTC
rendered paste body
	NSMutableString *string = [[NSMutableString alloc] init];
	
	NSRange effectiveRange = NSMakeRange(0, 0);
	
	do {
		NSDictionary *results = [nonMutableString attributesAtIndex:NSMaxRange(effectiveRange) effectiveRange:&effectiveRange];
		if ([results objectForKey:NSAttachmentAttributeName])
			[string appendString:[[results objectForKey:NSAttachmentAttributeName] string]];
		else
			[string appendString:[[nonMutableString attributedSubstringFromRange:effectiveRange] string]];
	} while (NSMaxRange(effectiveRange) < [nonMutableString length]);