我在我的 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 上运行该应用程序时,它根本不显示。我该如何解决 ?