this.richTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F);// new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.G... ...
#import "CJInformationViewController.h" #import <WebKit/WebKit.h> #import <JavaScriptCore/JavaScriptCore.h> #import "CJwebotherCell.h" #import "CJComm ...
分类:
Web程序 时间:
2018-01-15 12:30:14
阅读次数:
288
第一种方法 labelname.font = [UIFont boldSystemFontOfSize:15.0]; 这种方法可能导致个别字体加粗不成功,用过这个之后就不要再用 labelname.font = [UIFont fontWithName:@"Helvetica-Bold" size: ...
分类:
移动开发 时间:
2017-09-25 11:42:59
阅读次数:
159
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
1.sizeWithFont.(7.0废除) - > sizeWithAttributes CGSize size = CGSizeZero; size = [title sizeWithFont:[UIFont systemFontOfSize:15]]; --> size = [title si ...
分类:
其他好文 时间:
2017-07-31 11:44:50
阅读次数:
159
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
UIFont 设置字体 label.font = [UIFont fontWithName:@"Arial-BoldItalicMT" size:24]; 字体名如下: Font Family: American TypewriterFont: AmericanTypewriterFont: Ame ...
分类:
其他好文 时间:
2017-07-12 18:49:09
阅读次数:
255
富文本(正则表达式) 一.新建工程导入图片 二 实现方式一(缺点是只能解决一个图片的替换) _myLabel.font = [UIFont systemFontOfSize:15]; //@"家里真没人 " //正则表达式 [] 是特殊字符 NSString *str = @"女神: s012 家里 ...
分类:
移动开发 时间:
2017-07-06 15:09:39
阅读次数:
526
UILabel *lable = [[UILabel alloc] init]; NSString *str = @"认证地区 未认证";//未认证-红色,下划线 NSMutableAttributedString *attrStr = [[NSMutableAttributedString all ...
分类:
其他好文 时间:
2017-07-02 20:27:17
阅读次数:
133