码迷,mamicode.com
首页 >  
搜索关键字:uifont    ( 255个结果
C#中RichTextBox字体不统一(中英文)
this.richTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F);// new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.G... ...
分类:Windows程序   时间:2018-03-23 22:58:52    阅读次数:605
WKwebview使用
#import "CJInformationViewController.h" #import <WebKit/WebKit.h> #import <JavaScriptCore/JavaScriptCore.h> #import "CJwebotherCell.h" #import "CJComm ...
分类:Web程序   时间:2018-01-15 12:30:14    阅读次数:288
iOS中如何给字体
第一种方法 labelname.font = [UIFont boldSystemFontOfSize:15.0]; 这种方法可能导致个别字体加粗不成功,用过这个之后就不要再用 labelname.font = [UIFont fontWithName:@"Helvetica-Bold" size: ...
分类:移动开发   时间:2017-09-25 11:42:59    阅读次数:159
关于Unity中的NGUI字体
NGUI字体类型 1: UIFont字体,UIFont类实现的2: TTF动态字体的使用3: BBCode的特殊字体的使用4: NGUI字体制作;5: BMFont字体制作和艺术字体的制作;6: UILabel的使用 NGUI >open >Font Maker,字体文件的制作工具 Generate ...
分类:编程语言   时间:2017-08-21 12:34:47    阅读次数:426
OC过期方法/属性替换汇总
1.sizeWithFont.(7.0废除) - > sizeWithAttributes CGSize size = CGSizeZero; size = [title sizeWithFont:[UIFont systemFontOfSize:15]]; --> size = [title si ...
分类:其他好文   时间:2017-07-31 11:44:50    阅读次数:159
iOS 打印系统字体
1 NSArray * array = [UIFont familyNames]; 2 3 for( NSString *familyName in array ){ 4 printf( "Family: %s \n", [familyName UTF8String] ); 5 NSArray *f... ...
分类:移动开发   时间:2017-07-21 15:45:11    阅读次数:236
iOS Label 自适应高度
推荐第二个 ...
分类:移动开发   时间:2017-07-14 13:33:56    阅读次数:255
UIFont 设置字体
UIFont 设置字体 label.font = [UIFont fontWithName:@"Arial-BoldItalicMT" size:24]; 字体名如下: Font Family: American TypewriterFont: AmericanTypewriterFont: Ame ...
分类:其他好文   时间:2017-07-12 18:49:09    阅读次数:255
iOS正则表达式的使用案例-富文本
富文本(正则表达式) 一.新建工程导入图片 二 实现方式一(缺点是只能解决一个图片的替换) _myLabel.font = [UIFont systemFontOfSize:15]; //@"家里真没人 " //正则表达式 [] 是特殊字符 NSString *str = @"女神: s012 家里 ...
分类:移动开发   时间:2017-07-06 15:09:39    阅读次数:526
UILabel Attributed 富文本
UILabel *lable = [[UILabel alloc] init]; NSString *str = @"认证地区 未认证";//未认证-红色,下划线 NSMutableAttributedString *attrStr = [[NSMutableAttributedString all ...
分类:其他好文   时间:2017-07-02 20:27:17    阅读次数:133
255条   上一页 1 2 3 4 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!