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?
For custom disclosure indicators you could just use
UITableViewCell‘saccessoryViewproperty and set any size you want. If you are asking for disclosure indicator sizes that apple uses, they are: 58×62 for disclosure button, retina, and 19×28 for disclosure indicator, retina. Good Luck!