How do I resolve truncated text issue in Apple Accessibility audit when using Accessibility inspector?

I created a test screen for this example:

class ViewController: UIViewController {
    
    private let testLabel: UILabel = {
        let label = UILabel()
        label.text = "Apple A11y Tes"
        label.textAlignment = .center
        label.numberOfLines = 1
        label.adjustsFontForContentSizeCategory = true
        label.font = .preferredFont(forTextStyle: .headline)
        label.translatesAutoresizingMaskIntoConstraints = false
        return label
    }()

    override func viewDidLoad() {
        super.viewDidLoad()
        setupUI()
    }
    
    private func setupUI() {
        view.addSubview(testLabel)
        
        NSLayoutConstraint.activate([
            testLabel.centerXAnchor.constraint(equalTo: view.centerXAnchor),
            testLabel.centerYAnchor.constraint(equalTo: view.centerYAnchor),
            testLabel.leadingAnchor.constraint(greaterThanOrEqualTo: view.leadingAnchor, constant: 25),
            testLabel.trailingAnchor.constraint(lessThanOrEqualTo: view.trailingAnchor, constant: -25)
        ])
    }
}


What is the expected result here?


[Re-Titled by Moderator]

Original Title: I have an issue on Apple accessibility audit, the text is truncated but can't see the issue in accessibility inspector app

iPhone 16 Pro

Posted on Jun 4, 2025 1:34 AM

Reply

There are no replies.

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

How do I resolve truncated text issue in Apple Accessibility audit when using Accessibility inspector?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.