Skip to content

Commit

Permalink
Update TestWindowStyleViewController.m
Browse files Browse the repository at this point in the history
  • Loading branch information
HDB-Li committed Sep 29, 2019
1 parent c393c9f commit 0aa56c3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row == 0) {
[self testSuspensionBallWindowStyle];
[self testBallWindowStyle];
} else if (indexPath.row == 1) {
[self testTitleWindowStyle];
} else if (indexPath.row == 2) {
[self testSuspensionLeadingWindowStyle];
[self testLeadingWindowStyle];
} else if (indexPath.row == 3) {
[self testSuspensionTrailingWindowStyle];
[self testTrailingWindowStyle];
} else if (indexPath.row == 4) {
[self testNetBarWindowStyle];
} else if (indexPath.row == 5) {
Expand All @@ -73,19 +73,19 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
}

#pragma mark - Actions
- (void)testSuspensionBallWindowStyle {
- (void)testBallWindowStyle {
[LLConfig shared].entryWindowStyle = LLConfigEntryWindowStyleBall;
}

- (void)testTitleWindowStyle {
[LLConfig shared].entryWindowStyle = LLConfigEntryWindowStyleTitle;
}

- (void)testSuspensionLeadingWindowStyle {
- (void)testLeadingWindowStyle {
[LLConfig shared].entryWindowStyle = LLConfigEntryWindowStyleLeading;
}

- (void)testSuspensionTrailingWindowStyle {
- (void)testTrailingWindowStyle {
[LLConfig shared].entryWindowStyle = LLConfigEntryWindowStyleTrailing;
}

Expand Down

0 comments on commit 0aa56c3

Please sign in to comment.