Created
July 10, 2015 14:13
-
-
Save jrcryer/4ad2d74d94339eece02a to your computer and use it in GitHub Desktop.
Revisions
-
jrcryer created this gist
Jul 10, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ // // 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 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #import "KizuWifiIcon.h" #import "KizuIcons.h" @implementation KizuWifiIcon - (void)drawRect:(CGRect)rect { [KizuIcons drawWifiWithRect:rect]; } @end 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ + (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;