ボタンを押すと 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];
}
各レッスンを別のラインにしたいです。