Skip to content

Instantly share code, notes, and snippets.

@jrcryer
Created July 10, 2015 14:13
Show Gist options
  • Save jrcryer/4ad2d74d94339eece02a to your computer and use it in GitHub Desktop.
Save jrcryer/4ad2d74d94339eece02a to your computer and use it in GitHub Desktop.
icons
//
// 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
#import "KizuWifiIcon.h"
#import "KizuIcons.h"
@implementation KizuWifiIcon
- (void)drawRect:(CGRect)rect
{
[KizuIcons drawWifiWithRect:rect];
}
@end
+ (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