SlideShare a Scribd company logo
1 of 27
Download to read offline
ACCESSIBILITY
IN WATCHKIT
BRIAN GILHAM
> The Working Group
http://twg.ca
> WatchKit Resources
http://watchkitresources.com
> Developing for Apple Watch
http://bit.ly/1NHPOGk
> Five Minute WatchKit
http://fiveminutewatchkit.com
> Chronicons
http://chronicons.com
accessibility is really about
making sure all users, regardless
of abilities, have full access to
(...) the great features you put in
your apps
— Ian Fisch, Accessibility Engineer0
0
WWDC, 2014
not only accommodate these
groups of individuals, but (...)
empower them to do things they
otherwise might not have been
able to do
— Qasid Sadiq, Apple Accessibility1
1
WWDC, 2015
Situational disability is a term
used to describe a temporary
state imposed by a person's
current environment that results
in an accessibility issue.
— Web Accessibility Wiki3
3
http://accessibility.co.uk/wiki/situational-disability
WHAT CAN THE
WATCH DO?
VOICEOVER
According to the World Health Organization4
,
approximately 285 million people worldwide are visually
impaired. Of those, roughly 39 million are blind and 246
million have low vision.
4
http://www.who.int/mediacentre/factsheets/fs282/en/
I closed my eyes, and really used
it. I wept. These technologies are a
lifeline for visually impaired
users.
— Matt Gemmell5
5
http://mattgemmell.com/accessibility-for-iphone-and-ipad-apps/
IMPLEMENTATION
> Indicate an element should be read using
setIsAccessibilityElement:YES
> Provide an accessibility label (string) using
setAccessibilityLabel:
EXAMPLE
MLB.COM AT BAT
BASIC ACCESSIBILITY
self.basesIcon.isAccessibilityElement = YES;
self.basesIcon.accessibilityLabel = @"2 bases loaded";
A STEP FURTHER
self.basesIcon.accessibilityTraits =
(
UIAccessibilityTraitImage |
UIAccessibilityTraitUpdatesFrequently
);
IMAGE
REGIONS
IMAGE REGIONS
- (void)awakeWithContext:(id)context
{
[super awakeWithContext:context];
WKAccessibilityImageRegion *timCookRegion = [[WKAccessibilityImageRegion alloc] init];
timCookRegion.frame = CGRectMake(0, 0, 60, 80);
timCookRegion.label = NSLocalizedString(@"Tim Cook", nil);
[self.group setAccessibilityImageRegions:@[timCookRegion]];
}
VOICEOVER STATUS
WKAccessibilityIsVoiceOverRunning()
NOTIFICATIONS
WKAccessibilityVoiceOverStatusChanged
ANNOUNCEMENTS
RADAR OR GTFO
PUBLIC SERVICE
ANNOUNCEMENT
ACCESSIBILITY SHORTCUT
GOOD/BAD NEWS
LARGE/BOLD
TEXT
GRAYSCALE
REDUCE
TRANSPARENCY
REDUCE
MOTION
CONCLUSION
QUESTIONS?

More Related Content

Similar to Accessibility in WatchKit – Tacow (November 2015)

Wearable Accessibility - Accessing Higher Ground 2014
Wearable Accessibility - Accessing Higher Ground 2014Wearable Accessibility - Accessing Higher Ground 2014
Wearable Accessibility - Accessing Higher Ground 2014Ted Drake
 
Introduction to Wearable Development
Introduction to Wearable DevelopmentIntroduction to Wearable Development
Introduction to Wearable DevelopmentMohammad Arman
 
Using WCAG and ARIA for an accessible project
Using WCAG and ARIA for an accessible projectUsing WCAG and ARIA for an accessible project
Using WCAG and ARIA for an accessible projectReinaldo Ferraz
 
Usability ≠ Accessibility. An intro to web accessibility for agencies.
Usability ≠ Accessibility. An intro to web accessibility for agencies.Usability ≠ Accessibility. An intro to web accessibility for agencies.
Usability ≠ Accessibility. An intro to web accessibility for agencies.Kate Horowitz
 
Albert Jan Tebbe (Ooyala) @ CMC TV in the Cloud & On Demand
Albert Jan Tebbe (Ooyala) @ CMC TV in the Cloud & On DemandAlbert Jan Tebbe (Ooyala) @ CMC TV in the Cloud & On Demand
Albert Jan Tebbe (Ooyala) @ CMC TV in the Cloud & On DemandMedia Perspectives
 
Exploring byod approaches for mobile learning
Exploring byod approaches for mobile learningExploring byod approaches for mobile learning
Exploring byod approaches for mobile learningDebbie Richards
 
13 Trends of 2013 - by Eduardo Mapa Jr, Executive Partner at Havas Media Ortega
13 Trends of 2013 - by Eduardo Mapa Jr, Executive Partner at Havas Media Ortega13 Trends of 2013 - by Eduardo Mapa Jr, Executive Partner at Havas Media Ortega
13 Trends of 2013 - by Eduardo Mapa Jr, Executive Partner at Havas Media OrtegaHavas Media
 
Disability Inclusive Infrastructure Presentation
Disability Inclusive Infrastructure PresentationDisability Inclusive Infrastructure Presentation
Disability Inclusive Infrastructure PresentationCaribbean Development Bank
 
Open Geo-Social API (and Screencast)
Open Geo-Social API (and Screencast)Open Geo-Social API (and Screencast)
Open Geo-Social API (and Screencast)Pat Cappelaere
 
6’APART – A STEP TO PREVENT COVID-19
6’APART – A STEP TO PREVENT COVID-196’APART – A STEP TO PREVENT COVID-19
6’APART – A STEP TO PREVENT COVID-19IRJET Journal
 
6’APART – A STEP TO PREVENT COVID-19
6’APART – A STEP TO PREVENT COVID-196’APART – A STEP TO PREVENT COVID-19
6’APART – A STEP TO PREVENT COVID-19IRJET Journal
 
Quantified Biohacking
Quantified BiohackingQuantified Biohacking
Quantified BiohackingUpgaged LLC
 
Social shock: leading in today's digital, social, and mobile world
Social shock: leading in today's digital, social, and mobile worldSocial shock: leading in today's digital, social, and mobile world
Social shock: leading in today's digital, social, and mobile worldPerry Hewitt
 
IARPA automated low level analysis and description of diverse intelligence vi...
IARPA automated low level analysis and description of diverse intelligence vi...IARPA automated low level analysis and description of diverse intelligence vi...
IARPA automated low level analysis and description of diverse intelligence vi...Kaye Beach
 
Evaluationof Smartphone Accessibility Interface Practices for Older Adults
Evaluationof Smartphone Accessibility Interface Practices for Older AdultsEvaluationof Smartphone Accessibility Interface Practices for Older Adults
Evaluationof Smartphone Accessibility Interface Practices for Older Adultsinventionjournals
 
Ritesh Harvard Hyperlink
Ritesh Harvard Hyperlink Ritesh Harvard Hyperlink
Ritesh Harvard Hyperlink Dr Ritesh Malik
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android DevelopmentEdureka!
 
4imprint Wearable Tech Infographic
4imprint Wearable Tech Infographic4imprint Wearable Tech Infographic
4imprint Wearable Tech Infographic4imprint
 
assisting device for visually impaired person
assisting device for visually impaired personassisting device for visually impaired person
assisting device for visually impaired personPushpa Gothwal
 

Similar to Accessibility in WatchKit – Tacow (November 2015) (20)

Accessibility Part 1
Accessibility Part 1Accessibility Part 1
Accessibility Part 1
 
Wearable Accessibility - Accessing Higher Ground 2014
Wearable Accessibility - Accessing Higher Ground 2014Wearable Accessibility - Accessing Higher Ground 2014
Wearable Accessibility - Accessing Higher Ground 2014
 
Introduction to Wearable Development
Introduction to Wearable DevelopmentIntroduction to Wearable Development
Introduction to Wearable Development
 
Using WCAG and ARIA for an accessible project
Using WCAG and ARIA for an accessible projectUsing WCAG and ARIA for an accessible project
Using WCAG and ARIA for an accessible project
 
Usability ≠ Accessibility. An intro to web accessibility for agencies.
Usability ≠ Accessibility. An intro to web accessibility for agencies.Usability ≠ Accessibility. An intro to web accessibility for agencies.
Usability ≠ Accessibility. An intro to web accessibility for agencies.
 
Albert Jan Tebbe (Ooyala) @ CMC TV in the Cloud & On Demand
Albert Jan Tebbe (Ooyala) @ CMC TV in the Cloud & On DemandAlbert Jan Tebbe (Ooyala) @ CMC TV in the Cloud & On Demand
Albert Jan Tebbe (Ooyala) @ CMC TV in the Cloud & On Demand
 
Exploring byod approaches for mobile learning
Exploring byod approaches for mobile learningExploring byod approaches for mobile learning
Exploring byod approaches for mobile learning
 
13 Trends of 2013 - by Eduardo Mapa Jr, Executive Partner at Havas Media Ortega
13 Trends of 2013 - by Eduardo Mapa Jr, Executive Partner at Havas Media Ortega13 Trends of 2013 - by Eduardo Mapa Jr, Executive Partner at Havas Media Ortega
13 Trends of 2013 - by Eduardo Mapa Jr, Executive Partner at Havas Media Ortega
 
Disability Inclusive Infrastructure Presentation
Disability Inclusive Infrastructure PresentationDisability Inclusive Infrastructure Presentation
Disability Inclusive Infrastructure Presentation
 
Open Geo-Social API (and Screencast)
Open Geo-Social API (and Screencast)Open Geo-Social API (and Screencast)
Open Geo-Social API (and Screencast)
 
6’APART – A STEP TO PREVENT COVID-19
6’APART – A STEP TO PREVENT COVID-196’APART – A STEP TO PREVENT COVID-19
6’APART – A STEP TO PREVENT COVID-19
 
6’APART – A STEP TO PREVENT COVID-19
6’APART – A STEP TO PREVENT COVID-196’APART – A STEP TO PREVENT COVID-19
6’APART – A STEP TO PREVENT COVID-19
 
Quantified Biohacking
Quantified BiohackingQuantified Biohacking
Quantified Biohacking
 
Social shock: leading in today's digital, social, and mobile world
Social shock: leading in today's digital, social, and mobile worldSocial shock: leading in today's digital, social, and mobile world
Social shock: leading in today's digital, social, and mobile world
 
IARPA automated low level analysis and description of diverse intelligence vi...
IARPA automated low level analysis and description of diverse intelligence vi...IARPA automated low level analysis and description of diverse intelligence vi...
IARPA automated low level analysis and description of diverse intelligence vi...
 
Evaluationof Smartphone Accessibility Interface Practices for Older Adults
Evaluationof Smartphone Accessibility Interface Practices for Older AdultsEvaluationof Smartphone Accessibility Interface Practices for Older Adults
Evaluationof Smartphone Accessibility Interface Practices for Older Adults
 
Ritesh Harvard Hyperlink
Ritesh Harvard Hyperlink Ritesh Harvard Hyperlink
Ritesh Harvard Hyperlink
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android Development
 
4imprint Wearable Tech Infographic
4imprint Wearable Tech Infographic4imprint Wearable Tech Infographic
4imprint Wearable Tech Infographic
 
assisting device for visually impaired person
assisting device for visually impaired personassisting device for visually impaired person
assisting device for visually impaired person
 

Recently uploaded

TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusZilliz
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 

Recently uploaded (20)

TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 

Accessibility in WatchKit – Tacow (November 2015)