Created
August 10, 2021 18:51
-
-
Save atierian/6ad13c42afbac2b0347337619eee7662 to your computer and use it in GitHub Desktop.
UITableView insetGrouped
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Top: 35 | |
Sides: 20 | |
Corner Radius: 10 | |
(lldb) po tableView.cellForRow(at: .init(row: 0, section: 0))?.frame | |
▿ Optional<CGRect> | |
▿ some : (0.0, 35.0, 374.0, 44.0) | |
▿ origin : (0.0, 35.0) | |
- x : 0.0 | |
- y : 35.0 | |
▿ size : (374.0, 44.0) | |
- width : 374.0 | |
- height : 44.0 | |
(lldb) po tableView.frame | |
▿ (0.0, 0.0, 414.0, 896.0) | |
▿ origin : (0.0, 0.0) | |
- x : 0.0 | |
- y : 0.0 | |
▿ size : (414.0, 896.0) | |
- width : 414.0 | |
- height : 896.0 | |
(lldb) po tableView.cellForRow(at: .init(row: 0, section: 0))?.layer.cornerRadius | |
▿ Optional<CGFloat> | |
- some : 10.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment