@@ -57,13 +57,13 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
57
57
58
58
- (void )tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
59
59
if (indexPath.row == 0 ) {
60
- [self testSuspensionBallWindowStyle ];
60
+ [self testBallWindowStyle ];
61
61
} else if (indexPath.row == 1 ) {
62
62
[self testTitleWindowStyle ];
63
63
} else if (indexPath.row == 2 ) {
64
- [self testSuspensionLeadingWindowStyle ];
64
+ [self testLeadingWindowStyle ];
65
65
} else if (indexPath.row == 3 ) {
66
- [self testSuspensionTrailingWindowStyle ];
66
+ [self testTrailingWindowStyle ];
67
67
} else if (indexPath.row == 4 ) {
68
68
[self testNetBarWindowStyle ];
69
69
} else if (indexPath.row == 5 ) {
@@ -73,19 +73,19 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
73
73
}
74
74
75
75
#pragma mark - Actions
76
- - (void )testSuspensionBallWindowStyle {
76
+ - (void )testBallWindowStyle {
77
77
[LLConfig shared ].entryWindowStyle = LLConfigEntryWindowStyleBall;
78
78
}
79
79
80
80
- (void )testTitleWindowStyle {
81
81
[LLConfig shared ].entryWindowStyle = LLConfigEntryWindowStyleTitle;
82
82
}
83
83
84
- - (void )testSuspensionLeadingWindowStyle {
84
+ - (void )testLeadingWindowStyle {
85
85
[LLConfig shared ].entryWindowStyle = LLConfigEntryWindowStyleLeading;
86
86
}
87
87
88
- - (void )testSuspensionTrailingWindowStyle {
88
+ - (void )testTrailingWindowStyle {
89
89
[LLConfig shared ].entryWindowStyle = LLConfigEntryWindowStyleTrailing;
90
90
}
91
91
0 commit comments