我在这里为一大堆问题道歉。我开始越来越多地使用 Quartz Graphics,发现它具有有趣的效果,但我没有太多示例可以看到它们的实际效果。
view.layer.shadowPath = [UIBezierPath bezierPathWithRect:view.bounds].CGPath;
有一个影子属性:
view.layer.shadowColor = [UIColor grayColor].CGColor;
view.layer.shadowOffset = CGSizeMake(5, 5);
view.layer.shadowPath = [UIBezierPath bezierPathWithRect:view.bounds].CGPath;
view.layer.shadowRadius = 9;
虽然我无法进行影子表演。
边框:
view.layer.borderWidth = 1;
view.layer.borderColor=[[UIColor whiteColor] CGColor];
iPhone 上的内置 iOS 还能获得哪些其他效果?*是否有一个全面的演示项目可以展示 iOS 中内置了什么样的图形操作功能?*
如何进行透明蒙版?
有没有办法添加内部阴影或内部发光?有没有办法让 iOS 按钮看起来比实际更“凹”?
有没有办法做径向渐变?有没有办法像 Adobe Illustrator 一样创建多光线镜头光晕效果?有没有办法使用“变亮、溶解”或其他 Photoshop 效果来混合图层?有没有办法动态调整图像的亮度?我知道如何进行色相偏移。
我将不胜感激有关我可以将哪种图层效果应用于 CALayers 的任何其他提示