我是iOS开发中的NewBie。我使用HMSegmentedController对于我的Application.In我的应用程序SegmentedControll部分古吉拉特语中的标题如
self.segmentedControl.sectionTitles = @[@"નવું", @"જાણવા જેવું"];
现在我想将此字体设置为我的自定义字体,如
self.segmentedControl.font=[UIFont fontWithName:@"NotoSansGujaratiUIRegular" size:6.0f];
当我将其设置为自定义字体时,它会给我错误
[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'
我运行没有自定义字体然后它按我想要的运行,但我想设置它自定义字体请给我解决方案。
这里我在My Framework中添加了UIKIt,并在info.plist文件中添加了
<key>UIAppFonts</key>
<array>
<string>NotoSansGujaratiUIRegular.ttf</string>
<string>NotoSansGujaratiUIBold.ttf</string>
</array>
请给我解决方案。