問題があります。Objective-Cを使用したiOS警告メッセージに改行を追加する
"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];
私はラインがとても破る「そしてもう一つ:」を実装するにはどうすればよい
は、私は警告を持っている二行目に開始します。
ありがとうございました!
ありがとうございます。早かった。まさに私が必要としたもの。 – TrekOnTV2017