Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the dimensions of iOS custom disclosure indicators?

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?

like image 320
M Jesse Avatar asked Feb 18 '13 06:02

M Jesse


1 Answers

Our app uses white disclosure indicators in iOS 7. To match the styling in iOS 6.1 and prior, we use a custom disclosure indicator image that corresponds exactly to the iOS 7 disclosure indicator. We were able to obtain a pixel-perfect match with 26x28 [email protected] and 13x14 disclosure.png.

disclosure@2x.pngdisclosure.png

like image 93
Mark Avatar answered Feb 23 '23 00:02

Mark