session-ios/Signal/src/UIStoryboard+OWS.swift
Michael Kirk 9b2eb80392 Code review on new-features
* use page view controller
* UIPageControl instead of arrows for idiomatic swiping
* Nudge title lower
* better hit area for dismiss
* use darker blue for text
* Open privacy settings from callkit update screen
* tweak copy
* latest translations

// FREEBIE
2017-03-02 22:09:33 -05:00

21 lines
508 B
Swift

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
import Foundation
extension UIStoryboard {
private enum StoryboardName: String {
case main = "Main",
registration = "Registration"
}
class var main: UIStoryboard {
return UIStoryboard(name: StoryboardName.main.rawValue, bundle: Bundle.main)
}
class var registration: UIStoryboard {
return UIStoryboard(name: StoryboardName.registration.rawValue, bundle: Bundle.main)
}
}