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 Foundation | |
import UIKit | |
// Data to JSON | |
typealias JSON = [String: AnyObject] | |
extension Data { | |
func toJSON() -> JSON? { | |
var json: JSON? = nil | |
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 | |
@propertyWrapper | |
struct Capitalized { | |
// MARK: - Properties | |
private var value: String | |
// MARK: - |
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 | |
import PlaygroundSupport | |
class StarView: UIView { | |
override init(frame: CGRect) { | |
super.init(frame: frame) | |
backgroundColor = .red | |
} | |
required init?(coder: NSCoder) { |
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
// | |
// BaseViewController.InApp.swift | |
// CrazyMath | |
// | |
// Created by Tien Le P. on 4/4/19. | |
// Copyright © 2019 Fx Studio All rights reserved. | |
// | |
import StoreKit | |
import SwiftyStoreKit |
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
// | |
// BaseViewController.swift | |
// CrazyQuizEnglish | |
// | |
// Created by Tien Le P. on 2/27/19. | |
// Copyright © 2019 Fx Studio All rights reserved. | |
// | |
import UIKit | |
import GoogleMobileAds |