初心者の質問。
警告があります:
"alertMessage" = "This is my message: 1 2 3. And another one: 5 6 7";
私が表示しているもの:
NSString *asd = NSLocalizedString (@"alertMessage", @"");
NSString *alertTitle = NSLocalizedString (@"alertTitle", @"");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:alertTitle message:asd delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
「AndAnotherone:」が2行目から始まるように、改行を実装するにはどうすればよいですか。
ありがとうございました!
メッセージに改行文字(\ n)を追加します。
文字列リテラルに\ nを追加します。