4

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?

1 Answer 1

5

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).

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

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.

Ask question

Explore related questions

See similar questions with these tags.