0

ボタンを押すと UIAlert ビューがポップアップします。テキストを別々の行に、各行に特定のテキストを入れたい。現在アプリを実行すると、段落に表示されます。これはコードです:

- (IBAction)popupalert:(id)sender {
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Lesson Timing" message:
                      @"Lesson 1: 7:40-8:20, Lesson 2: 8:22-9:02, Breakfast Break: 9:02-9:15, Lesson 3: 9:15-9:55, Lesson 4: 9:57-10:37, Lesson 5: 10:39 - 11:19, Second Break: 11:19-11:29, Lesson 6: 11:29-12:09, Lesson 7: 12:11-12:51, Lesson 8: 12:53-1:33, Lunch Break: 1:33-1:58, Private Study: 1:58-2:38, Lesson 9: 2:40-3:15" delegate:nil cancelButtonTitle:@"Done" otherButtonTitles:nil, nil];
[alert show];

}

各レッスンを別のラインにしたいです。

4

1 に答える 1

0

単純にテキストを別々の行に配置したい場合は、文字列を改行 ( \n) 文字でフォーマットすることで実行できます。

UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Lesson Timing" 
                                               message:@"Lesson 1: 7:40-8:20, \nLesson 2: 8:22-9:02, \nBreakfast Break: 9:02-9:15, \nLesson 3: 9:15-9:55, \nLesson 4: 9:57-10:37, \nLesson 5: 10:39 - 11:19, \nSecond Break: 11:19-11:29, Lesson 6: 11:29-12:09, Lesson 7: 12:11-12:51, Lesson 8: 12:53-1:33, Lunch Break: 1:33-1:58, \nPrivate Study: 1:58-2:38, \nLesson 9: 2:40-3:15" 
                                              delegate:nil 
                                     cancelButtonTitle:@"Done" 
                                     otherButtonTitles:nil, nil];
于 2013-06-25T10:55:26.293 に答える