mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-05-17 00:06:44 +08:00
32 lines
693 B
Objective-C
32 lines
693 B
Objective-C
//
|
|
// Utilities.h
|
|
// Flickrgram
|
|
//
|
|
// Created by Hannah Troisi on 3/9/16.
|
|
// Copyright © 2016 Hannah Troisi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIColor (Additions)
|
|
|
|
+ (UIColor *)darkBlueColor;
|
|
+ (UIColor *)lightBlueColor;
|
|
+ (UIColor *)duskColor;
|
|
+ (UIColor *)customOrangeColor;
|
|
|
|
@end
|
|
|
|
@interface UIImage (Additions)
|
|
|
|
- (UIImage *)makeCircularImageWithSize:(CGSize)size;
|
|
|
|
@end
|
|
|
|
@interface NSAttributedString (Additions)
|
|
|
|
+ (NSAttributedString *)attributedStringWithString:(NSString *)string fontSize:(CGFloat)size
|
|
color:(UIColor *)color firstWordColor:(UIColor *)firstWordColor;
|
|
|
|
@end |