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
| // | |
| // GoogleLogin.swift | |
| // | |
| // | |
| // Created by Ilesh's on 31/12/18. | |
| // Copyright © 2018 Ilesh's. All rights reserved. | |
| // | |
| // HERE I HAVE IMPLEMENTED |
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
| //Protocal that copyable class should conform | |
| protocol Copying { | |
| init(original: Self) | |
| } | |
| //Concrete class extension | |
| extension Copying { | |
| func copy() -> Self { | |
| return Self.init(original: self) | |
| } |
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
| // | |
| // IPTapableLabel.swift | |
| // | |
| // | |
| // Created by Ilesh's 2018 on 07/10/19. | |
| // Copyright © 2019 Ilesh's. All rights reserved. | |
| // | |
| import Foundation |
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
| // | |
| // IPFacebookLogin.swift | |
| // | |
| // | |
| // Created by Ilesh's 2018 on 05/11/18. | |
| // Copyright © 2018. All rights reserved. | |
| // | |
| import UIKit | |
| import FacebookLogin |
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
| // | |
| // | |
| // IPGoogleLogin.swift | |
| // | |
| // | |
| // Created by Ilesh's on 31/12/18. | |
| // Copyright © 2018 Ilesh's. All rights reserved. | |
| // | |
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
| // | |
| // IPDocumentPicker.swift | |
| // | |
| // | |
| // Created by Ilesh on 22/11/18. | |
| // Copyright © 2018. All rights reserved. | |
| // | |
| import UIKit | |
| import MobileCoreServices |
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
| // | |
| // VideoRecorder.swift | |
| // VideoRecorder | |
| // | |
| // Created by Ilesh's 2018 on 20/11/19. | |
| // Copyright © 2019 Ilesh's. All rights reserved. | |
| // | |
| import UIKit | |
| import AVFoundation |