Today's Menu  Portugal
journal and plan nutrition
Z5Label.m
Go to the documentation of this file.
1 //
2 // Z5Label.m
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 12/13/16.
6 // Copyright © 2016 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 
9 #import "Z5Label.h"
10 
11 @implementation Z5Label
12 
13 - (void)drawTextInRect:(CGRect)rect {
14  UIEdgeInsets insets = {10, 5, 10, 5};
15  [super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)];
16 }
17 /*
18 // Only override drawRect: if you perform custom drawing.
19 // An empty implementation adversely affects performance during animation.
20 - (void)drawRect:(CGRect)rect {
21  // Drawing code
22 }
23 */
24 
25 @end