Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is correct to use square icons on iOS?

Tags:

ios

icons

Let me explain, these are the names and size of the icons that I use currently for developing an app for iOS (with titanium appcelerator , but this is not important)

enter image description here

Previously I used recognizable icons with rounded edges, but now I insert the icons with the rectangular shape for comfort.

I just wanted to know if this could be a problem in displaying the icon of the app on the device. The icon of the app in the Springboard is automatically rounded, as well as in the settings of the device. I wanted to know if this rounding automatic, happen in all positions where the icon appears, thanks

like image 893
WhiteLine Avatar asked Jan 11 '23 16:01

WhiteLine


1 Answers

Yes.

This is how you're supposed to do it. iOS automagically rounds the corners, as you say.

In fact, you shouldn't be rounding the corners yourself. If iOS were to change how corners are rounded in a future release, your icon might look rather ugly with white/black 'fragments' near the corners.

There's a neat exploration of the iOS 7 corner rounding changes here - this is the diff between iOS 6 rounding and iOS 7 rounding:

enter image description here

like image 52
Undo Avatar answered Jan 19 '23 23:01

Undo