iOS
2022. 10. 20.
[CoreAnimation] CAReplicatorLayer ์์๋ณด๊ธฐ
CAReplicatorLayer ์์น, ์๊น, ์๊ฐ ๋ฑ์ transformation ๋ฃฐ์ ์งํค๋ฉด์ ํ๋์ ๋ ์ด์ด๋ฅผ ๋ณต์ ํด์ ๋ณต์กํ ๋ ์ด์์์ ๊ตฌ์ฑํด์ฃผ๋ ๊ฐ์ฒด์
๋๋ค. let replicatorLayer = CAReplicatorLayer() let redSquare = CALayer() redSquare.backgroundColor = NSColor.white.cgColor redSquare.frame = CGRect(x: 0, y: 0, width: 100, height: 100) let instanceCount = 5 replicatorLayer.instanceCount = instanceCount replicatorLayer.instanceTransform = CATransform3DMakeTrans..