这是什么错误?我正在使用可变类型,但它仍然无法正常工作!
错误是:
由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“使用 deleteCharactersInRange 改变不可变对象:”
NSMutableString *line= [NSMutableString stringWithString:@"here is the string"];
[line deleteCharactersInRange: NSMakeRange(1,9 )];