SlideShare una empresa de Scribd logo
1 de 18
Descargar para leer sin conexión
Introducing
The Great
CALayer Tour
Presented by Scott Gardner
About Me
Scott Gardner
iOS developer for 4+ years
Author of Transitioning to Swift
Speaking at CocoaConf Chicago ,
March 2015
LinkedIn: scotteg.com
Twitter: @scotteg
Tech Talk Overview
Things to Know
CALayer and Subclasses
Demos
Getting Started
Layer Player Tour
Layer Player Code
Things to Know: CALayer & Subclasses
CALayer CAScrollLayer CATextLayer CAGradientLayer CAReplicatorLayer
CATiledLayer CAShapeLayer CAEAGLLayer CATransformLayer CAEmitterLayer
AVPLayerLayer
Things to Know: CALayer
Base Layer Class
Manage and animate visual content
All views have a backing layer
Better performance than UIViews
Many helpful properties
Most automatically animated
Can add additional animations
Can be hit tested*
Things to Know: CAScrollLayer
Display portion of a scrollable layer
Can lock horizontal and/or vertical
UIScrollView doesn’t use it
Cannot directly react to touch or bounds check
Use UIScrollView when scrolling is touch-based
Use CATiledLayer when scrolling large images
Things to Know: CATextLayer
Render plain text or attributed strings
Similar capabilities as UILabel
Can change text, font, size, color, wrapping,
alignment, and truncation
Things to Know: AVPlayerLayer
Display an AV player
Can change player and videoGravity and videoRect
AVPlayer includes play(), pause(), rate, and seeking
AVPlayerItem has many useful properties and
callbacks
Things to Know: CAGradientLayer
Apply a color gradient over the
background
Faster than using Core Graphics
Can change colors, locations*, and start/end points
Things to Know: CAReplicatorLayer
Duplicate a source layer
Creates specified number of copies
Applies a transform to each copy
Can delay drawing of each copy
Can preserve depth
Things to Know: CATiledLayer
Asynchronously draw layer content in
tiles
Can be used to asynchronously draw a large image
Layer Player project includes tile cutter*
Can change tile size, resolution, and fade duration
Things to Know: CAShapeLayer
Draw using scalable vector paths
Faster than layer.contents = UIImage(named: …)
No pixelation, no clipping, and preserves aspect ratio
Can change line thickness and dashing, how lines end
or join other lines, and line and fill color
Tip: use PaintCode to create image path code
Save $20 on PaintCode: bit.ly/PaintCodeRocks
Things to Know: CAEAGLLayer
Draw OpenGL content
Should make layer opaque and match bounds
Should not transform
Avoid drawing additional layers on top
Optionally override UIView.layerClass()
Use GLKView or CAMetalLayer instead
Things to Know: CATransformLayer
Draw 3D structures
Does not flatten its sublayers
Each sublayer has its own opacity
Transform is applied to sublayers
Transform ignores changes to rendered layer
properties
Cannot directly hit test
…but can hit test sublayers
Things to Know: CAEmitterLayer
Render animated particles
Particles are instances of CAEmitterCell
Draws particles above backgroundColor and border
Can change render mode and emitter position, shape, size,
spin, velocity, birth rate, and lifetime
Can preserve depth to render in 3D
Can change cell contents, color, speed of color change,
scale, emission latitude/longitude, initial velocity,
acceleration, birth rate, lifetime, and magnification/
minification filters
Introducing
The Great
CALayer Tour
Demos
Where To Go From Here?
Download Layer Player from App Store
Read 10 Ways To Score Wins With Layers
tutorial on raywenderlich.com
Practice, practice, practice!
Drop me a note anytime! :]
@scotteg
fin

Más contenido relacionado

Similar a The Great CALayer Tour

Utilizing Layers in AutoCAD Prototype Package
Utilizing Layers in AutoCAD Prototype PackageUtilizing Layers in AutoCAD Prototype Package
Utilizing Layers in AutoCAD Prototype Package
Brian Mitchell
 
Css3 transitions and animations + graceful degradation with jQuery
Css3 transitions and animations + graceful degradation with jQueryCss3 transitions and animations + graceful degradation with jQuery
Css3 transitions and animations + graceful degradation with jQuery
Andrea Verlicchi
 
blockdiag - a simple diagram generator
blockdiag - a simple diagram generatorblockdiag - a simple diagram generator
blockdiag - a simple diagram generator
Takeshi Komiya
 

Similar a The Great CALayer Tour (20)

Implementing CATiledLayer
Implementing CATiledLayerImplementing CATiledLayer
Implementing CATiledLayer
 
CATiled Layer - Melbourne Cocoheads February 2012
CATiled Layer - Melbourne Cocoheads February 2012CATiled Layer - Melbourne Cocoheads February 2012
CATiled Layer - Melbourne Cocoheads February 2012
 
Degrafa Beta 3 - 360|MAX
Degrafa Beta 3 - 360|MAXDegrafa Beta 3 - 360|MAX
Degrafa Beta 3 - 360|MAX
 
Blender for ArchViz.pdf
Blender for ArchViz.pdfBlender for ArchViz.pdf
Blender for ArchViz.pdf
 
AutoCAD Tips, Tricks, and Delightful Drafting Techniques
AutoCAD Tips, Tricks, and Delightful Drafting TechniquesAutoCAD Tips, Tricks, and Delightful Drafting Techniques
AutoCAD Tips, Tricks, and Delightful Drafting Techniques
 
Solidworks
SolidworksSolidworks
Solidworks
 
Civil 3D Visualization
Civil 3D VisualizationCivil 3D Visualization
Civil 3D Visualization
 
Utilizing Layers in AutoCAD Prototype Package
Utilizing Layers in AutoCAD Prototype PackageUtilizing Layers in AutoCAD Prototype Package
Utilizing Layers in AutoCAD Prototype Package
 
a3.pdf
a3.pdfa3.pdf
a3.pdf
 
Front end workflow Presentation at Coffee@DBG by Praveen Vijayan
Front end workflow Presentation at Coffee@DBG by Praveen VijayanFront end workflow Presentation at Coffee@DBG by Praveen Vijayan
Front end workflow Presentation at Coffee@DBG by Praveen Vijayan
 
Svcc Java2D And Groovy
Svcc Java2D And GroovySvcc Java2D And Groovy
Svcc Java2D And Groovy
 
IOS Storyboards
IOS StoryboardsIOS Storyboards
IOS Storyboards
 
Reveal
RevealReveal
Reveal
 
CSS and CSS3
CSS and CSS3CSS and CSS3
CSS and CSS3
 
Hi performance table views with QuartzCore and CoreText
Hi performance table views with QuartzCore and CoreTextHi performance table views with QuartzCore and CoreText
Hi performance table views with QuartzCore and CoreText
 
Css3 transitions and animations + graceful degradation with jQuery
Css3 transitions and animations + graceful degradation with jQueryCss3 transitions and animations + graceful degradation with jQuery
Css3 transitions and animations + graceful degradation with jQuery
 
Professional JavaScript: AntiPatterns
Professional JavaScript: AntiPatternsProfessional JavaScript: AntiPatterns
Professional JavaScript: AntiPatterns
 
Academy PRO: HTML5 API graphics
Academy PRO: HTML5 API graphicsAcademy PRO: HTML5 API graphics
Academy PRO: HTML5 API graphics
 
Material Design Android
Material Design AndroidMaterial Design Android
Material Design Android
 
blockdiag - a simple diagram generator
blockdiag - a simple diagram generatorblockdiag - a simple diagram generator
blockdiag - a simple diagram generator
 

Más de Scott Gardner

Más de Scott Gardner (6)

Getting Started with Combine And SwiftUI
Getting Started with Combine And SwiftUIGetting Started with Combine And SwiftUI
Getting Started with Combine And SwiftUI
 
SwiftUI and Combine All the Things
SwiftUI and Combine All the ThingsSwiftUI and Combine All the Things
SwiftUI and Combine All the Things
 
Reactive Programming with RxSwift
Reactive Programming with RxSwiftReactive Programming with RxSwift
Reactive Programming with RxSwift
 
Reactive programming with RxSwift
Reactive programming with RxSwiftReactive programming with RxSwift
Reactive programming with RxSwift
 
To Swift 2...and Beyond!
To Swift 2...and Beyond!To Swift 2...and Beyond!
To Swift 2...and Beyond!
 
4 Ways To Improve User Interface Development
4 Ways To Improve User Interface Development4 Ways To Improve User Interface Development
4 Ways To Improve User Interface Development
 

Último

Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 

Último (20)

What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaS
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 

The Great CALayer Tour

  • 2. About Me Scott Gardner iOS developer for 4+ years Author of Transitioning to Swift Speaking at CocoaConf Chicago , March 2015 LinkedIn: scotteg.com Twitter: @scotteg
  • 3. Tech Talk Overview Things to Know CALayer and Subclasses Demos Getting Started Layer Player Tour Layer Player Code
  • 4. Things to Know: CALayer & Subclasses CALayer CAScrollLayer CATextLayer CAGradientLayer CAReplicatorLayer CATiledLayer CAShapeLayer CAEAGLLayer CATransformLayer CAEmitterLayer AVPLayerLayer
  • 5. Things to Know: CALayer Base Layer Class Manage and animate visual content All views have a backing layer Better performance than UIViews Many helpful properties Most automatically animated Can add additional animations Can be hit tested*
  • 6. Things to Know: CAScrollLayer Display portion of a scrollable layer Can lock horizontal and/or vertical UIScrollView doesn’t use it Cannot directly react to touch or bounds check Use UIScrollView when scrolling is touch-based Use CATiledLayer when scrolling large images
  • 7. Things to Know: CATextLayer Render plain text or attributed strings Similar capabilities as UILabel Can change text, font, size, color, wrapping, alignment, and truncation
  • 8. Things to Know: AVPlayerLayer Display an AV player Can change player and videoGravity and videoRect AVPlayer includes play(), pause(), rate, and seeking AVPlayerItem has many useful properties and callbacks
  • 9. Things to Know: CAGradientLayer Apply a color gradient over the background Faster than using Core Graphics Can change colors, locations*, and start/end points
  • 10. Things to Know: CAReplicatorLayer Duplicate a source layer Creates specified number of copies Applies a transform to each copy Can delay drawing of each copy Can preserve depth
  • 11. Things to Know: CATiledLayer Asynchronously draw layer content in tiles Can be used to asynchronously draw a large image Layer Player project includes tile cutter* Can change tile size, resolution, and fade duration
  • 12. Things to Know: CAShapeLayer Draw using scalable vector paths Faster than layer.contents = UIImage(named: …) No pixelation, no clipping, and preserves aspect ratio Can change line thickness and dashing, how lines end or join other lines, and line and fill color Tip: use PaintCode to create image path code Save $20 on PaintCode: bit.ly/PaintCodeRocks
  • 13. Things to Know: CAEAGLLayer Draw OpenGL content Should make layer opaque and match bounds Should not transform Avoid drawing additional layers on top Optionally override UIView.layerClass() Use GLKView or CAMetalLayer instead
  • 14. Things to Know: CATransformLayer Draw 3D structures Does not flatten its sublayers Each sublayer has its own opacity Transform is applied to sublayers Transform ignores changes to rendered layer properties Cannot directly hit test …but can hit test sublayers
  • 15. Things to Know: CAEmitterLayer Render animated particles Particles are instances of CAEmitterCell Draws particles above backgroundColor and border Can change render mode and emitter position, shape, size, spin, velocity, birth rate, and lifetime Can preserve depth to render in 3D Can change cell contents, color, speed of color change, scale, emission latitude/longitude, initial velocity, acceleration, birth rate, lifetime, and magnification/ minification filters
  • 17. Where To Go From Here? Download Layer Player from App Store Read 10 Ways To Score Wins With Layers tutorial on raywenderlich.com Practice, practice, practice! Drop me a note anytime! :] @scotteg
  • 18. fin