-
Notifications
You must be signed in to change notification settings - Fork 1
/
UITableViewCell_TLCommon.m
101 lines (94 loc) · 2.81 KB
/
UITableViewCell_TLCommon.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//
// UITableViewCell_TLCommon.m
// TLCommon
//
// Created by Joshua Bleecher Snyder on 10/15/09.
//
#import "UITableViewCell_TLCommon.h"
#import "UIFont_TLCommon.h"
@implementation UITableViewCell (TLCommon)
+ (UIFont *)defaultTextLabelFontForCellStyle:(UITableViewCellStyle)cellStyle {
UIFont *defaultFont = nil;
switch(cellStyle) {
case UITableViewCellStyleDefault:;
defaultFont = [UIFont helveticaBoldWithSize:20.0f];
break;
case UITableViewCellStyleSubtitle:;
defaultFont = [UIFont helveticaBoldWithSize:18.0f];
break;
case UITableViewCellStyleValue1:;
defaultFont = [UIFont helveticaBoldWithSize:20.0f];
break;
case UITableViewCellStyleValue2:;
defaultFont = [UIFont helveticaBoldWithSize:13.0f];
break;
default:;
defaultFont = nil;
break;
}
return defaultFont;
}
+ (UIFont *)defaultDetailTextLabelFontForCellStyle:(UITableViewCellStyle)cellStyle {
UIFont *defaultFont = nil;
switch(cellStyle) {
case UITableViewCellStyleDefault:;
defaultFont = nil;
break;
case UITableViewCellStyleSubtitle:;
defaultFont = [UIFont helveticaBoldWithSize:14.0f];
break;
case UITableViewCellStyleValue1:;
defaultFont = [UIFont helveticaWithSize:20.0f];
break;
case UITableViewCellStyleValue2:;
defaultFont = [UIFont helveticaBoldWithSize:15.0f];
break;
default:;
defaultFont = nil;
break;
}
return defaultFont;
}
+ (UIColor *)defaultTextLabelColorForCellStyle:(UITableViewCellStyle)cellStyle {
UIColor *defaultColor = nil;
switch(cellStyle) {
case UITableViewCellStyleDefault:;
defaultColor = [UIColor colorWithWhite:0.0f alpha:1.0f];
break;
case UITableViewCellStyleSubtitle:;
defaultColor = [UIColor colorWithWhite:0.0f alpha:1.0f];
break;
case UITableViewCellStyleValue1:;
defaultColor = [UIColor colorWithWhite:0.0f alpha:1.0f];
break;
case UITableViewCellStyleValue2:;
defaultColor = [UIColor colorWithRed:0.22f green:0.33f blue:0.53f alpha:1.0f];
break;
default:;
defaultColor = nil;
break;
}
return defaultColor;
}
+ (UIColor *)defaultDetailTextLabelColorForCellStyle:(UITableViewCellStyle)cellStyle {
UIColor *defaultColor = nil;
switch(cellStyle) {
case UITableViewCellStyleDefault:;
defaultColor = nil;
break;
case UITableViewCellStyleSubtitle:;
defaultColor = [UIColor colorWithRed:0.5f green:0.5f blue:0.5f alpha:1.0f];
break;
case UITableViewCellStyleValue1:;
defaultColor = [UIColor colorWithRed:0.22f green:0.33f blue:0.53f alpha:1.0f];
break;
case UITableViewCellStyleValue2:;
defaultColor = [UIColor colorWithWhite:0.0f alpha:1.0f];
break;
default:;
defaultColor = nil;
break;
}
return defaultColor;
}
@end