iosxcodexcode8

Xcode doesn't allow to name an image with special letters


I want to name images in Assets.xcassets like "a", "á", "â", "ã", "à", but when I try to name an image with "á" and hit 'enter', the name turns into "a-1", "â" - into "a-2" and so on. How can I set image name with this symbols?

SOLVED

Check right answer in comments


Solution

  • As I was answered on apple forums

    For XCode, if you name images a and à, it considers that it's the same name ; would be the same with a and A.

    So I was forced to name my images as

    1. a -> a1
    2. á -> a2
    3. â -> a3
    4. and so on

    Check it out here