Objective-Cでスペースと希望の長さの文字列を作成する最短の方法は何ですか?
サイクルを使用して実行できますfor
が、数行のコードです。
最初の6文字を返します
NSString *fullName = @"Warif Akhand Rishi";
NSString *subString = [fullName substringToIndex:6];
stringWithFormatを見たことがありますか?
[NSMutableString stringWithFormat:@"%20d", 42];