#import @interface UIFont (APCAppearance)+ (UIFont*) appRegularFontWithSize: (CGFloat) size;+ (UIFont*) appMediumFontWithSize: (CGFloat) size;+ (UIFon...
分类:
其他好文 时间:
2015-08-01 07:45:52
阅读次数:
119
一,工程目录
二,AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization...
分类:
其他好文 时间:
2015-07-31 20:29:56
阅读次数:
218
一,工程目录二,AppDelegate.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override poi...
分类:
其他好文 时间:
2015-07-31 20:00:26
阅读次数:
149
苹果可使用的字体列表:
https://support.apple.com/zh-cn/HT202599
动态下载字体的代码demo:
https://developer.apple.com/library/ios/samplecode/DownloadFont/Introduction/Intro.html#//apple_ref/doc/uid/DTS4001340...
分类:
其他好文 时间:
2015-07-30 19:32:35
阅读次数:
126
UILabel设置@property(nonatomic,copy)NSString *text;//显示文字@property(nonatomic,retain)UIFont *font;//字体@property(nonatomic,retain)UIColor *textColor;//文字颜...
分类:
移动开发 时间:
2015-07-29 22:42:46
阅读次数:
128
一,名词解释
PostScript字体: 按 PostScript 页面描述语言 (PDL) 规则定义的字体,并且只能在 PostScript 兼容的打印机上打印。
二,打开Launchpad------>字体册.如下图,右侧会显示字体的PostScript名称。
参考资料:
《iOS开发进阶》 -唐巧...
分类:
其他好文 时间:
2015-07-29 19:14:48
阅读次数:
508
原文: http://www.cnblogs.com/qingche/p/3574995.html?utm_source=tuicool1.NSKernAttributeName: @10 调整字句 kerning 字句调整2.NSFontAttributeName : [UIFont system...
分类:
移动开发 时间:
2015-07-29 11:53:45
阅读次数:
154
昨天晚上被自动布局里自定义行高磨了一晚上,简直快要疯掉。我是利用Masonry来进行自动布局的,布局很简单,就是cell里面放两个label,可是,在我添加完约束之后,控制台就会打印一大堆东西,约束是这样的:_titleLab.font = [UIFont systemFontOfSize:28*....
分类:
其他好文 时间:
2015-07-21 12:29:46
阅读次数:
586
self.navigationController?.navigationBar.titleTextAttributes
= [NSForegroundColorAttributeName:UIColor.whiteColor(),UIFont(name: "Heiti SC", size: 24.0)!];...
分类:
编程语言 时间:
2015-07-15 19:22:32
阅读次数:
148
1.UILabel- UILabel的常见属性@property(nonatomic,copy) NSString *text;显示的文字@property(nonatomic,retain) UIFont *font;字体UIFont代表字体,常见创建方法有以下几个:+ (UIFont *)sys...
分类:
其他好文 时间:
2015-07-15 06:30:17
阅读次数:
137