I create a NSMutableAttributedString in the init method of a view by doing this:

self.name = [[NSMutableAttributedString alloc] initWithString:@"Gabe Jacobs"];

How do I update the string within it without initing again? I don't want to have to create a new one every time. Any idea?

有帮助吗?

解决方案

NSMutableString *string = [NSMutableString stringWithString:@"first"];
[string replaceCharactersInRange:NSMakeRange(0, string.length) withString:@"second"];
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top