What I want to know is how to create in swift a string with notation on localizable file and replace this notation just before.
"welcome" = "Hello %@, Welcome!"
"seeYou" = "Goodbye %@"
"update" = "All your profile data was update, %@"
in another file:
func showMessage(name : String){
print(welcome,name)
}
thanks for the help,
Filipe