16 lines
249 B
Swift
16 lines
249 B
Swift
|
//
|
||
|
// ViewController.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by MainasuK Cirno on 2021-3-31.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class ViewController: UIViewController {
|
||
|
|
||
|
override var preferredStatusBarStyle: UIStatusBarStyle {
|
||
|
return .darkContent
|
||
|
}
|
||
|
}
|