This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class AppCoordinator: Coordinator { | |
let window: UIWindow | |
lazy var feedCoordinator: FeedCoordinator = { | |
return FeedCoordinator(viewController: self.window.rootViewController!) | |
}() | |
init(window: UIWindow) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Must import AssetsLibrary.framework(Required), Photos.framework(Optional) from Targets > General > Linked Frameworks and Libraries | |
import Photos | |
import AssetsLibrary | |
enum PhotoAlbumUtilResult { | |
case SUCCESS, ERROR, DENIED | |
} | |
class PhotoAlbumUtil: NSObject { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 追記 | |
require 'etc' | |
### | |
class Chef | |
module Rbenv | |
... | |
end | |
class Provider |
NewerOlder