What are the dimensions of iOS custom disclosure indicators?

ios, uitableview

Solution

For custom disclosure indicators you could just use `UITableViewCell`'s `accessoryView` property and set any size you want. If you are asking for disclosure indicator sizes that apple uses, they are: 58x62 for disclosure button, retina, and 19x28 for disclosure indicator, retina. Good Luck!

Problem

I am looking to implement a custom disclosure indicator in a `UITableView`. Basically I need to make white indicators. Apple documentation lists dimensions that are required for app icons for the retina and non-retina display, however I couldn't find recommended dimensions for items such as disclosure indictors. Does anyone have any suggestions on what the appropriate dimensions would be to create disclosure icons for retina and non-retina displays? And come to think of it how would the app know which one to pick?

Original source