-
Notifications
You must be signed in to change notification settings - Fork 2
/
DebuggingLabels.m
61 lines (48 loc) · 1.19 KB
/
DebuggingLabels.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//
// DebuggingLabels.m
// BlurtScroll
//
// Created by Mike Place on 3/18/13.
// Copyright (c) 2013 Super Top Secret. All rights reserved.
//
#import "DebuggingLabels.h"
@implementation ScrollOffsetLabel
-(UILabel*)init
{
self = [super initWithFrame:CGRectMake(0,0,140,10)];
self.backgroundColor = [UIColor clearColor];
self.text = @"SCROLL OFFSET";
self.font = [self.font fontWithSize:8];
return self;
}
@end
@implementation OffsetLabel
-(UILabel*)init
{
self = [super initWithFrame: CGRectMake(0, 10, 80, 10)];
self.backgroundColor = [UIColor clearColor];
self.text = @"OFFSET";
self.font = [self.font fontWithSize:8];
return self;
}
@end
@implementation TargetOffsetLabel
-(UILabel*)init
{
self = [super initWithFrame: CGRectMake(0, 20, 140, 10)];
self.backgroundColor = [UIColor clearColor];
self.text = @"TARGET OFFSET";
self.font = [self.font fontWithSize:8];
return self;
}
@end
@implementation DisplayedCellId
-(UILabel*)init
{
self = [super initWithFrame:CGRectMake(0, 30, 140, 10)];
self.backgroundColor = [UIColor clearColor];
self.text = @"OFFSET";
self.font = [self.font fontWithSize:8];
return self;
}
@end