Shortcuts in Objective-C to concatenate NSStrings

前端 未结 30 2879
伪装坚强ぢ
伪装坚强ぢ 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

    Try stringWithFormat:

    NSString *myString = [NSString stringWithFormat:@"%@ %@ %@ %d", "The", "Answer", "Is", 42];
    

提交回复
热议问题