Created
July 10, 2015 14:13
-
-
Save jrcryer/4ad2d74d94339eece02a to your computer and use it in GitHub Desktop.
icons
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
// | |
// KizuWifiIcon.h | |
// Kizu | |
// | |
// Created by James Cryer on 13/06/2015. | |
// Copyright (c) 2015 KIZU Ltd. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface KizuWifiIcon : UIView | |
@end |
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
#import "KizuWifiIcon.h" | |
#import "KizuIcons.h" | |
@implementation KizuWifiIcon | |
- (void)drawRect:(CGRect)rect | |
{ | |
[KizuIcons drawWifiWithRect:rect]; | |
} | |
@end |
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
+ (void)drawLargeBrushWithFrame: (CGRect)frame; | |
+ (void)drawMediumBrushWithFrame: (CGRect)frame; | |
+ (void)drawSmallBrushWithFrame: (CGRect)frame; | |
+ (void)drawAnnotationWithFrame: (CGRect)frame; | |
+ (void)drawTextWithFrame: (CGRect)frame; | |
+ (void)drawDeleteWithFrame: (CGRect)frame; | |
+ (void)drawEraseWithFrame: (CGRect)frame; | |
+ (void)drawAddWithFrame: (CGRect)frame; | |
+ (void)drawUndoWithFrame: (CGRect)frame; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment