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
| // | |
| // IPTextField.swift | |
| // | |
| // | |
| // Created by Ilesh on 06/04/18. | |
| // Copyright © 2019 Ilesh. All rights reserved. | |
| // | |
| import Foundation | |
| import UIKit |
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
| // | |
| // IPLocation.swift | |
| // | |
| // | |
| // Created by Ilesh on 06/08/18. | |
| // Copyright © 2018 Ilesh. All rights reserved. | |
| // | |
| import Foundation | |
| import CoreLocation |
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
| // | |
| // IPFirebaseNotification.swift | |
| // | |
| // | |
| // Created by Ilesh on 06/08/18. | |
| // Copyright © 2018 Ilesh. All rights reserved. | |
| // | |
| import Foundation | |
| import UserNotifications |
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
| class MIDISampler : NSObject { | |
| var engine:AVAudioEngine! | |
| var playerNode:AVAudioPlayerNode! | |
| var mixer:AVAudioMixerNode! | |
| var sampler:AVAudioUnitSampler! | |
| override init() { | |
| super.init() | |
| initAudioEngine() | |
| } |
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
| // | |
| // Lookup.swift | |
| // | |
| // | |
| // Created by Ilesh's 2018 on 09/03/19. | |
| // Copyright © 2019 Ilesh. 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
| // | |
| // IPDirectory.swift | |
| // | |
| // | |
| // Created by Ilesh's 2018 on 13/06/19. | |
| // Copyright © 2019 Ilesh's mac. All rights reserved. | |
| // | |
| import Foundation | |
| import UIKit |
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
| // | |
| // IPMailComposer.swift | |
| // | |
| // | |
| // Created by Ilesh's 2018 on 02/07/19. | |
| // Copyright © 2019 Ilesh. All rights reserved. | |
| // | |
| import MessageUI |
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
| /** | |
| @brief Returns true if images have same meta. Width, Height, bit depth. | |
| @discussion Assumes images are non null. | |
| */ | |
| func doImagesHaveSameMeta(#image1:CGImage, #image2:CGImage) -> Bool { | |
| if CGImageGetWidth(image1) != CGImageGetWidth(image2) { | |
| return false | |
| } | |
| if CGImageGetHeight(image1) != CGImageGetHeight(image2) { |
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
| // | |
| // GoogleAds.swift | |
| // | |
| // | |
| // Created by Ilesh's 2018 on 18/05/19. | |
| // Copyright © 2019 Ilesh. All rights reserved. | |
| // | |
| import UIKit | |
| import GoogleMobileAds |