Today's Menu  Portugal
journal and plan nutrition
Z5TextField.m
Go to the documentation of this file.
1 //
2 // Z5TextField.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 "Z5TextField.h"
10 
11 @implementation Z5TextField
12 
13 // placeholder position
14 - (CGRect)textRectForBounds:(CGRect)bounds {
15  return CGRectInset(bounds, 10, 10);
16 }
17 
18 // text position
19 - (CGRect)editingRectForBounds:(CGRect)bounds {
20  return CGRectInset(bounds, 10, 10);
21 }
22 
23 /*w
24 // Only override drawRect: if you perform custom drawing.
25 // An empty implementation adversely affects performance during animation.
26 - (void)drawRect:(CGRect)rect {
27  // Drawing code
28 }
29 */
30 
31 @end