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 | |
// from https://github.com/CaptainRedmuff/UIColor-Crayola | |
extension UIColor | |
{ | |
public class var crayolaAbsoluteZeroColor:UIColor | |
{ |
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
// | |
// AudioTableMeter.swift | |
// | |
// Created by Jorge Ouahbi on 20/11/16. | |
// Copyright © 2016 Jorge Ouahbi. All rights reserved. | |
// | |
// Abstract: Class for handling conversion from linear scale to dB | |
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
// | |
// UIBezierPath+Polygon.swift | |
// | |
// Created by Jorge Ouahbi on 12/9/16. | |
// Copyright © 2016 Jorge Ouahbi. All rights reserved. | |
// | |
// Based on Erica Sadun code | |
// https://gist.github.com/erica/c54826fd3411d6db053bfdfe1f64ab54 |
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
// | |
// Compatibility.swift | |
// | |
// Created by Jorge Ouahbi on 12/9/16. | |
// Copyright © 2016 Jorge Ouahbi. All rights reserved. | |
// | |
// Based on Erica Sadun code | |
// https://gist.github.com/erica/c54826fd3411d6db053bfdfe1f64ab54 |
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
// | |
// NSDictionary+Keychain.h | |
// | |
// Created by Jorge Ouahbi on 10/2/17. | |
// Copyright © 2017 Jorge Ouahbi. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
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
// | |
// UIViewController+UIAlertController.h | |
// | |
// Created by Jorge Ouahbi on 5/1/17. | |
// Copyright © 2017 JorgeOuahbi. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface UIViewController(UIAlertController) |
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
// | |
// NSObject+JSON.m | |
// | |
// | |
// Created by Jorge Ouahbi on 05/06/17. | |
// Copyright © 2017 Jorge Ouahbi. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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
// | |
// NSDictionary+QueryString.h | |
// | |
// | |
// Created by Jorge Ouahbi on 05/06/17. | |
// Copyright © 2016 Jorge Ouahbi. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
@interface NSDictionary (QueryString) |
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
// | |
// OMBaseServices.m.h | |
// | |
// | |
// Created by Jorge Ouahbi on 27/9/17. | |
// Copyright © 2017 Jorge Ouahbi. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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 <TargetConditionals.h> | |
#if TARGET_OS_IPHONE | |
#import <Foundation/Foundation.h> | |
#endif | |
typedef enum GradientPosition { | |
vertical, | |
horizontal, | |
diagonal |
OlderNewer