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
// | |
// ClusterIconGenerator.swift | |
// | |
import Foundation | |
import GoogleMapsUtils | |
class ClusterIconGenerator: NSObject, GMUClusterIconGenerator { |
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
// | |
// MediaPicker.swift | |
// | |
/* | |
The last step you must open info.plist in your Xcode project. By write dictinary value as follow | |
key → Privacy - Camera Usage Description, value → $(PRODUCT_NAME) Camera use. | |
key → Privacy - Photo Library Usage Description, value → $(PRODUCT_NAME) Photo use. |
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
// | |
// AppCell.swift | |
// | |
// | |
import Foundation | |
import UIKit | |
/// MARK: - This protocol is used to allows cell to be dequeued with strong type | |
public protocol DequeuableProtocol: class { |
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
// | |
// AppUserDefaults.swift | |
// | |
import Foundation | |
import SwiftyJSON | |
enum AppUserDefaults { | |
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
// | |
// AppStoryboard.swift | |
// | |
// USAGE | |
// let greenScene = GreenVC.instantiate(fromAppStoryboard: .Main) | |
import Foundation | |
import AVKit |