mirror of https://github.com/oxen-io/session-ios
15 lines
327 B
Swift
15 lines
327 B
Swift
6 years ago
|
//
|
||
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
@objc class OWSImagePickerController: UIImagePickerController {
|
||
|
|
||
|
// MARK: Orientation
|
||
|
|
||
|
override public var supportedInterfaceOrientations: UIInterfaceOrientationMask {
|
||
6 years ago
|
return DefaultUIInterfaceOrientationMask()
|
||
6 years ago
|
}
|
||
|
}
|