0

How do i use a variable as an image name instead of hard coding the string?

right now I'm using this

[UIImage imageNamed:@"one.jpg"]

I would like to pass a NSString variable instead of "one.png"

1 Answer 1

6

Sorry if this misses your question, but you just pass the variable name.

NSString *myImageFile = @"one.jpg";
UIImage *myImage = [UIImage imageNamed:myImageFile];
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.