mirror of
https://github.com/mastodon/mastodon-ios
synced 2025-04-11 22:58:02 +02:00
15 lines
271 B
Swift
15 lines
271 B
Swift
//
|
|
// PortraitAlertController.swift
|
|
// Mastodon
|
|
//
|
|
// Created by Jed Fox on 2022-12-31.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class PortraitAlertController: UIAlertController {
|
|
override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
|
|
.portraitOnPhone
|
|
}
|
|
}
|