OC乱记

作者: 缺一门 | 来源:发表于2017-06-29 22:08 被阅读0次

1、字符串转换为日期

//实例化一个NSDateFormatter对象
NSDateFormatter* dateFormat = [[NSDateFormatter alloc] init];
//设定时间格式,这里可以设置成自己需要的格式
[dateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *date =[dateFormat dateFromString:@"1980-01-01 00:00:01"]; 

2、日期转换为字符串

//实例化一个NSDateFormatter对象
NSDateFormatter* dateFormat = [[NSDateFormatter alloc] init];
//设定时间格式,这里可以设置成自己需要的格式
[dateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *currentDateStr = [dateFormatter stringFromDate:[NSDate date]];

3、字体大小转化

750设计图 ppi72的情况下(Xcode默认字体):

  • (英文)iOSFontSize100 对应 144px ---> font = 图上px 乘以 0.69444444
  • (汉字)iOSFontSize100 对应 190px ---> font = 图上px 乘以 0.52631579

4、tabBar字体大小、颜色设置

  • 写在LLTabBarController.m中
//未选中状态
NSMutableDictionary *NormalAttrs = [NSMutableDictionary dictionary];
NormalAttrs[NSForegroundColorAttributeName] = HexRGBAlpha(0x999999, 1);
NormalAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:12.8];
//选中状态
NSMutableDictionary *SelectedAttrs = [NSMutableDictionary dictionary];
SelectedAttrs[NSForegroundColorAttributeName] = MainColor;
//赋值
UITabBarItem *item = [UITabBarItem appearance];
[item setTitleTextAttributes:NormalAttrs forState:UIControlStateNormal];
[item setTitleTextAttributes:SelectedAttrs forState:UIControlStateSelected];

5、NSString 类型 无论为@""还是nil 他的length都为0

6、 Color Blended Layers

Shows blended view layers. Multiple view layers that are drawn on top of each other with blending enabled are highlighted in red. Reducing the amount of red in your app when this option is selected can dramatically improve your app’s performance. Blended view layers often cause slow table scrolling.

  • 常见的就是将背景色设为父视图的背景色。

7、 会造成 offscreen rendering的原因有:

Any layer with a mask (layer.mask)
Any layer with layer.masksToBounds being true
Any layer with layer.allowsGroupOpacity set to YES and layer.opacity is less than 1.0
Any layer with a drop shadow (layer.shadow*).
Any layer with layer.shouldRasterize being true
Any layer with layer.cornerRadius, layer.edgeAntialiasingMask, layer.allowsEdgeAntialiasing

instrument core animation 选项


  • Color Blended layers######

勾选这个选项后,blended layer 就会被显示为红色,而不透明的layer则是绿色。我们希望越少红色区域越好。
Color Hits Green and Misses Red
这个选项主要是检测我们有无滥用或正确使用layer的shouldRasterize属性.成功被缓存的layer会标注为绿色,没有成功缓存的会标注为红色。


  • Color copied images######

这个选项主要检查我们有无使用不正确图片格式,若是GPU不支持的色彩格式的图片则会标记为青色,则只能由CPU来进行处理。我们不希望在滚动视图的时候,CPU实时来进行处理,因为有可能会阻塞主线程。

  • Color misaligned images######

这个选项检查了图片是否被放缩,像素是否对齐。被放缩的图片会被标记为黄色,像素不对齐则会标注为紫色。

  • Color offscreen-rendered yellow######

这个选项将需要offscreen渲染的的layer标记为黄色。
NavigationBar和ToolBar被标记为黄色。因为它们需要模糊背后的内容,这需要offscreen渲染。但是这是我们需要的。而图片也是被标记为黄色,那是因为阴影的缘故。我前面已经提到了这一点,如果此时我们用shadowPath来替代的话,就能够避免offscreen渲染带来的巨大开销。


  • Color OpenGL fast path blue######

这个选项勾选后,由OpenGL compositor进行绘制的图层会标记为蓝色。这是一个好的结果。

  • Flash updated regions######

会标记屏幕上被快速更新的部分为黄色,我们希望只是更新的部分被标记完黄色。

常见tableView样式

image.png
    _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
    _tableView.0 = GRAYCOLOR;
    _tableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
    tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 1 / [UIScreen mainScreen].scale)];
    tableView.tableFooterView.backgroundColor = GRAYCOLOR;

汉字首字母

- (NSString *)firstCharactor:(NSString *)aString
{
    //转成了可变字符串
    NSMutableString *str = [NSMutableString stringWithString:aString];
    //先转换为带声调的拼音
    CFStringTransform((CFMutableStringRef)str,NULL, kCFStringTransformMandarinLatin,NO);
    //再转换为不带声调的拼音
    CFStringTransform((CFMutableStringRef)str,NULL, kCFStringTransformStripDiacritics,NO);
    //转化为大写拼音
    NSString *pinYin = [str capitalizedString];
    //获取并返回首字母
    return [pinYin substringToIndex:1];
}

相关文章

  • OC乱记

    1、字符串转换为日期 2、日期转换为字符串 3、字体大小转化 750设计图 ppi72的情况下(Xcode默认字体...

  • 乱记

    在我们小区,有一个阿姨,常穿着一套碎花连衣裙,梳着整齐的包头,脸上画着精致的妆。每到天气凉爽时总会把自家的狗~朵朵...

  • 乱记

    不知是不是多年当班主任的职业习惯,每接一个新班之前,我都会急于了解班里的每个学生,习惯于在组班后的第一个班会课让他...

  • 乱记

    最近抖音里好多有关毕业季的小视频,大同小异,学生在黑板上写出集体请假条,因毕业向老师请假永远,请老师批准并签字,签...

  • 乱记

    人生不如意之十之八九 活的越长,越明白,恶人永远都只会被恶人才能治。善良的人只会选择原谅 关于越自私的人,过得越好...

  • 乱记

    突然很难过,生活了两年的公司,宿舍,终究要散了,止不住的难过……… 未来会是怎么样,一个人生活,一个人面对陌生人,...

  • 乱记

    儿子满两岁了。越来越调皮了。 开始在学说话了,他之前只会爸爸妈妈,现在别人问他,他都能简单回答了。 老公前几天回来...

  • 乱记

    跌倒爬起来,眼神更加坚定。 我的幸福,他骑着电动车远去。 脾气 秉性 情怀 专职捣蒜 副业切菜 善于赖床打滚 把这...

  • 乱记

    岁尾年初,工作较平时反倒忙了许多。忙里偷闲,看了场电影。雷打不动,看了吴晓波和罗振宇两场跨年演讲。唏嘘感叹,现实世...

  • 乱记

    有些话我会一直记得,每当我想起时,我的女孩就会回来。 你年少时天大地大,绝望彷徨,看着的天边云霞发誓要踏遍整个世界...

网友评论

      本文标题:OC乱记

      本文链接:https://www.haomeiwen.com/subject/qmalbttx.html