zoukankan      html  css  js  c++  java
  • ios 动画的时候 如果加阴影 会卡顿的

    记录一下今天某群的聊天记录,一些算是经验吧,以后有用的。呵呵~
     
     动画的时候 如果加阴影 会卡顿的
    A  10:59:13
                _toView.layer.shadowColor = [[UIColor blackColor] CGColor];
                _toView.layer.shadowOffset = CGSizeMake(0.5, 0.5);
                _toView.layer.shadowRadius = 10;
                _toView.layer.shadowOpacity = 0.6; 这种会卡顿的
    B  10:59:21
    我给你找找
    A 10:59:25
    这样就不会了
    B)  10:59:40
    [UIBezierPath bezierPathWithRect:_toView.bounds].CGPath;
    必须加这个
    A 10:59:46
    指定一下 阴影的path
    YES
    饼子~~~~
    I LOVE YOU
    B  10:59:56
    我当时找这个问题找了一天
    A 10:59:59
    只是 没人提到...
    C 11:00:02
    阴影,耗内存的,
    B  11:00:25
    你在执行动画的时候一直在重花阴影
    A  11:00:27
    [UIBezierPath bezierPathWithRect:_toView.bounds].CGPath;
    加了这个基本卡顿消失了~~
    是的
    也就是为什么有的软件加阴影 不卡 有的很卡
    就是没有指定这句话~
     
    _view.layer.shadowPath = [UIBezierPath bezierPathWithRect:_toView.bounds].CGPath;
    本文出自 “命苦” 博客,请务必保留此出处http://mkhgg.blog.51cto.com/1741572/787543
  • 相关阅读:
    JMeter学习(二十三)关联
    最常用的DOS命令
    不同类型的操作系统
    分级存储管理的四大优点
    软件工程中数据库设计
    PPP(点对点协议(Point to Point Protocol)
    关键路径法
    什么是鲁棒性测试
    何为蠕虫病毒
    临界区
  • 原文地址:https://www.cnblogs.com/lihaibo-Leao/p/3485402.html
Copyright © 2011-2022 走看看