开发者

Does UITableView support grouped style with rectangular (not rounded) sections?

开发者 https://www.devze.com 2023-01-14 12:06 出处:网络
I would like to present a UITableView with a basic layout like this: header view table row table row table row

I would like to present a UITableView with a basic layout like this:

    header view
    table row
    table row
    table row
    header view
    table row 
    table row

Grouped style with section header views is the natural way to do this, but I don't want the "shunken (padding on the left and the right), rounded corner" look that grouped sections have. I'd like the look to be like an indexed plain table: table rows are all rectangular and full-width, with periodic header sections to separate the table rows into groups.

Is this possible with a grouped style table? Or can I simulate this with a plain table and custom content views for the section headers? Or is there another way to do this开发者_开发知识库? I'd like to reuse as much of UITableView as possible, without having to write a full custom control.


I'd go for the second option you presented. What you can do is use the delegate methods viewForHeaderInSection and viewForFooterInSection.

0

精彩评论

暂无评论...
验证码 换一张
取 消