摘要:
1. 不可变字符串Objective-C:NSString *string1 = @"Hello World!";Swift:let string1 = "Hello world!"2. 可变字符串Objective-C:NSMutableString *string2 = [NSMutableSt... 阅读全文
摘要:
1. MutabilityObjective-C offers several classes in both “regular” and mutable versions,such as NSString/NSMutableString, NSArray/NSMutableArray, and s... 阅读全文