PortraitAlertController.swift 271 B

123456789101112131415
  1. //
  2. // PortraitAlertController.swift
  3. // Mastodon
  4. //
  5. // Created by Jed Fox on 2022-12-31.
  6. //
  7. import UIKit
  8. class PortraitAlertController: UIAlertController {
  9. override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
  10. .portraitOnPhone
  11. }
  12. }