iOS所支持的字体

iOS所支持的字体,第1张

概述iOS所支持字体

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

- (voID)vIEwDIDLoad{    [super vIEwDIDLoad];	// Do any additional setup after loading the vIEw,typically from a nib.}- (voID)vIEwDIDUnload{    [super vIEwDIDUnload];    // Release any retained subvIEws of the main vIEw.}- (BOol)shouldautorotatetoInterfaceOrIEntation:(UIInterfaceOrIEntation)interfaceOrIEntation{    return (interfaceOrIEntation != UIInterfaceOrIEntationPortraitUpsIDeDown);}- (NSInteger)numberOfSectionsIntableVIEw:(UItableVIEw *)tableVIEw{    //字体家族总数        return [[UIFont familynames] count];}- (NSInteger)tableVIEw:(UItableVIEw *)tableVIEw numberOfRowsInSection:(NSInteger)section{    //字体家族包括的字体库总数    return [[UIFont FontnamesForFamilyname:[[UIFont familynames] objectAtIndex:section] ] count];}- (Nsstring *)tableVIEw:(UItableVIEw *)tableVIEw TitleForheaderInSection:(NSInteger)section{    //字体家族名称    Nsstring * Fontname = [[UIFont familynames] objectAtIndex:section];    if([Fontname isEqualToString:@"Menlo Regular"]||[Fontname isEqualToString:@"Menlo Bold"]||[Fontname isEqualToString:@"Zapf Dingbats"] ){        NSLog(@"%@",Fontname);    }    return [[UIFont familynames] objectAtIndex:section];}- (NSInteger)tableVIEw:(UItableVIEw *)tableVIEw sectionForSectionIndexTitle:(Nsstring *)Title atIndex:(NSInteger)index{    [tableVIEw scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:index] atScrollposition:UItableVIEwScrollpositionMIDdle animated:NO];    return index;}- (UItableVIEwCell *)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath{    static Nsstring *CellIDentifIEr = @"Cell";    UItableVIEwCell *cell = [tableVIEw dequeueReusableCellWithIDentifIEr:CellIDentifIEr];    if (cell == nil) {        cell = [[[UItableVIEwCell alloc] initWithStyle:UItableVIEwCellStyleDefault reuseIDentifIEr:CellIDentifIEr] autorelease];        cell.accessoryType = UItableVIEwCellAccessorydisclosureIndicator;    }        // Configure the cell.    cell.textLabel.textcolor = indexPath.row %2 ? [UIcolor orangecolor] : [UIcolor magentacolor];        //字体家族名称    Nsstring *familyname= [[UIFont familynames] objectAtIndex:indexPath.section];    //字体家族中的字体库名称    Nsstring *Fontname  = [[UIFont FontnamesForFamilyname:[[UIFont familynames] objectAtIndex:indexPath.section]] objectAtIndex:indexPath.row];        cell.textLabel.Font = [UIFont FontWithname:Fontname size:14.0f];        //查找微软雅黑字体Zapf Dingbats    if([Fontname isEqualToString:@"Menlo Regular"]||[Fontname isEqualToString:@"Menlo Bold"]||[Fontname isEqualToString:@"Zapf Dingbats"] ){        NSLog(@"%@",Fontname);    }    cell.textLabel.text = [Nsstring stringWithFormat:@"%@ - %@",familyname,Fontname ];        return cell;    }

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的iOS所支持的字体全部内容,希望文章能够帮你解决iOS所支持的字体所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1106130.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存