---
title: Day 124
author: Daniel Devesa Derksen-Staats
date: 2022-09-19 20:32
tags: Accessibility, a11y
categories: ["Accessibility"]
series: ["365 Days iOS Accessibility"]
image: /Images/365DaysIOSAccessibility/image89.jpg
---

Images can automatically scale for accessibility content size categories, by setting the adjustsImageSizeForAccessibilityContentSizeCategory property to true, for any UIImageView you'd like to get its size adjusted. 

[https://developer.apple.com/documentation/uikit/uiaccessibilitycontentsizecategoryimageadjusting/adjustsimagesizeforaccessibilitycontentsizecategory](https://developer.apple.com/documentation/uikit/uiaccessibilitycontentsizecategoryimageadjusting/adjustsimagesizeforaccessibilitycontentsizecategory)

![An accessibility icon together with a label with the text "Accessibility". It is in the large text size, the default. If the image view for the icon has the adjustsImageSizeForAccessibilityContentSizeCategory to false (the default value for this property), the icon would stay the same size even if the text size selected is AX5. But if that property is set to true, then the icon will scale and will be bigger for AX5.](/Images/365DaysIOSAccessibility/image89.jpg)