02 2016 档案

摘要:#import "MyView.h" IB_DESIGNABLE @interface MyView () @property (nonatomic, strong) IBInspectable UIColor * borderColor; @property (nonatomic, assign) 阅读全文
posted @ 2016-02-25 10:03 云影风雨 阅读(449) 评论(0) 推荐(0)
摘要:需求:ex: 在不同尺寸的iPhone上面显示的字体大小不一样 https://github.com/rentzsch/jrswizzle #import <UIKit/UIKit.h> @interface UILabel (Common) - (void) swizzSetFont: (UIFo 阅读全文
posted @ 2016-02-23 17:28 云影风雨 阅读(692) 评论(0) 推荐(0)
摘要:修改导航栏返回按钮的图片 方法1: [UINavigationBar appearance].backIndicatorTransitionMaskImage = [UIImage imageNamed:@"backArrowMask.png"]; [UINavigationBar appearan 阅读全文
posted @ 2016-02-16 14:21 云影风雨 阅读(10824) 评论(0) 推荐(0)
摘要:1.将字体拖入项目 2.在info.plist 文件中加入 3.使用 self.label.font = [UIFont fontWithName: @"FZ XingHei" size:20]; 4.使用字体注意版权问题 阅读全文
posted @ 2016-02-16 14:19 云影风雨 阅读(208) 评论(0) 推荐(0)