Skip to content

Commit

Permalink
[add] SearchView SeperatorInset추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhaeun-la committed Apr 11, 2024
1 parent b84796b commit 50dddab
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ public final class SearchViewController: UIViewController {
table.dataSource = recentSearchDataSource
table.delegate = self
table.accessibilityIdentifier = "최근검색"
table.separatorInset = UIEdgeInsets(
top: 0,
left: 13,
bottom: 0,
right: 13
)
return table
}()

Expand All @@ -61,6 +67,12 @@ public final class SearchViewController: UIViewController {
table.dataSource = searchedDataSource
table.delegate = self
table.accessibilityIdentifier = "검색결과"
table.separatorInset = UIEdgeInsets(
top: 0,
left: 13,
bottom: 0,
right: 13
)
return table
}()

Expand Down

0 comments on commit 50dddab

Please sign in to comment.