iOS アプリケーションでカスタム フォントを使用しています
//Label which will display the current message
currentMessageLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 75, 300, 30)];
[currentMessageLabel setBackgroundColor:[UIColor clearColor]];
currentMessageLabel.font = [UIFont fontWithName:@"Baroque Script" size:24];
currentMessageLabel.textColor = [UIColor redColor];
currentMessageLabel.textAlignment = UITextAlignmentCenter;
[self.view addSubivew:currentMessageLabel];
フォント名を Info.plist ファイルに追加し、ファイルを手動でバンドル リソースにコピーしました。シミュレーターでは動作しますが、iPhone 5 でアプリを実行すると、まったく表示されません。これを修正するにはどうすればよいですか?