我需要在iOS应用程序中添加自定义字体真棒图标。我正在关注这个tutorial,我能够显示字体真棒图标,但我需要显示自定义字体真棒图标。我在代码和info.plist中添加了它的字体文件,但它仍然没有显示,而是“?”正在出现。请建议我如何在我的iOS应用程序中显示自定义字体真棒图标?
这是我的代码
UIButton *tempBtn2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[tempBtn2 addTarget:self action:@selector(aMethod2:) forControlEvents:UIControlEventTouchUpInside];
tempBtn2.titleLabel.font = [UIFont fontWithName:kCustomFontAwesomeFamilyName size:24.0];
[tempBtn2 setTitle:[NSString customFontAwesomeIconStringForEnum:FIMinusCircle] forState:UIControlStateNormal];
tempBtn2.frame = CGRectMake(120, 220, 100, 100);
[self.view addSubview:tempBtn2];