UIPageControl 项目符号改进了可访问性触摸语音

UIPageControl bullets improve the accessibility touch voice over

我需要改进 EAIntroView 屏幕在启用画外音时从我的应用程序的转换。为此,我考虑使用变换来增加触摸区域:

    _pageControl.transform = CGAffineTransformMakeScale(1.0, 35.0);

但是控制项被拉长了:Stretched control item. How can I improve the touch area of the page control, which usually looks like this: normal page control。

我能够使用另一种方法解决我的问题:

    _pageControl.frame = CGRectMake(0.f, 0.f, 100, 100);

因此,我增加了控制项的触摸区域,以便更好地访问。