iOS Question Inserting '&' (Ampersand) Character in Application Title (SOLVED)

walterf25

Expert
Licensed User
Longtime User
Hi all, in an Application I'm developing, my client wants the Title to have a '&' character in the title, unfortunately if I put it in the title the Application will not compile, does anyone know if there's a way to do this and be able to compile the app?

I tried doing something like this:
Application Title:
Title1 \u0026 Title2
but doesn't work, instead it takes the "\u0026" as a literal string.

Any ideas?

Thanks,
Walter
 

walterf25

Expert
Licensed User
Longtime User
I found the solution everyone, sorry I should have been more patient, i found the answer in google, In order to insert the '&' in the title you need to do the following:
Application Title:
Title1 & Title2

The result will be
Application Title:
Title1 & Title2

Thanks,
Walter
 
Upvote 0

JohnC

Expert
Licensed User
Longtime User
Sometimes you can also use a double ampersand "&&" to display a single ampersand.
 
Upvote 0
Top