Shortcuts in Objective-C to concatenate NSStrings

前端 未结 30 2886
伪装坚强ぢ
伪装坚强ぢ 2020-11-22 07:03

Are there any shortcuts to (stringByAppendingString:) string concatenation in Objective-C, or shortcuts for working with NSString in general?

30条回答
  •  时光取名叫无心
    2020-11-22 07:52

    Two answers I can think of... neither is particularly as pleasant as just having a concatenation operator.

    First, use an NSMutableString, which has an appendString method, removing some of the need for extra temp strings.

    Second, use an NSArray to concatenate via the componentsJoinedByString method.

提交回复
热议问题