maddy
maddy

Reputation: 4111

Disable font scaling for UIAlertController text

In my own experience, I think we can not disable font scaling (Accessibility) for UIALertConterller's title, message, and other action buttons. I have gone through apple docs and other stack overflow threads to find the exact answer with yes or no. I know this is not a direct programming question but it would be a great help if someone has some inputs on this. A reference to apple doc stating 'we can not disable font scaling' will be great.

Thanks.

Upvotes: 1

Views: 655

Answers (1)

Stamenkovski
Stamenkovski

Reputation: 1044

UIAlertController

The UIAlertController class is intended to be used as-is and does not support subclassing. The view hierarchy for this class is private and must not be modified.

Upvotes: 1

Related Questions