This file contains 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
// | |
// FullScreenPresent.swift | |
// | |
// Created by Heath Hwang on 5/16/20. | |
// | |
import SwiftUI | |
extension View { | |
/// This is used for presenting any SwiftUI view in UIKit way. As it uses some tricky way to make the objective, could possibly happen some issues at every upgrade of iOS version. |
This file contains 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
// | |
// UIImageView+ZoomPinchGesture.swift | |
// | |
// Created by fullc0de on 2017. 12. 13.. | |
// Copyright © 2017 heath. All rights reserved. | |
// | |
import Foundation | |
import RxSwift | |
import RxCocoa |
This file contains 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
// If you want to make a use of Bolts framework for asynchronous task, | |
// should make a custom method which returns `BFTask` like that. | |
#import "HKKFirstViewController.h" | |
#import <Bolts/Bolts.h> | |
@interface HKKFirstViewController () | |
@end |