英文:
Xcode Image Literal
问题
我是新手 Swift 和 Xcode。图像文字似乎不像图片。
我想创建一个图像文字数组。我希望它们在代码中看起来像小图片,而不是字符串。就像这个屏幕截图中一样。我想看到的图片是这样的。
英文:
I am new at Swift and Xcode. Image literals not seem as a picture.
I want to make an array of Image Literals. I want them look like a small picture in code not a string. Like at the screenshoot.I want to see the images like this
答案1
得分: 0
你可以尝试在图像文字之前添加 #
,例如:
#imageLiteral(resourceName: "some-image")
英文:
You could try adding #
before image literal, for example:
#imageLiteral(resourceName: "some-image")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论