Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I would like to refer to a variable in swift using a combination of a string and another variable. In php I would often do the following:
$i = 1 ${'variable' . $i} = 'test'
Which is the same as
$variable1 = 'test'
How is this done in Swift?
You can't. Unlike PHP, Swift is not an interpreted language. As of version 1.1 it doesn't support almost any dynamism (which is a cost for being safe and performant).
Add a comment
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.