我对斯威夫特有些意见。
Ground = SKSpriteNode(imageNamed: "#imageLiteral(resourceName: "Ground")")
这里说“无法将UIImage类型的值转换为预期的参数类型字符串”我如何修复此问题
55ooxyrt1#
我在做:
profileImgView.image = UIImage(named: #imageLiteral(resourceName: "default_UserImage"))
而它应该是:
profileImgView.image = #imageLiteral(resourceName: "default_UserImage")
ujv3wf0j2#
也许我遗漏了什么,但你为什么要加上这个?
# imageLiteral(resourceName:
正确的语法是
let ground = SKSpriteNode(imageNamed: "Ground")
2条答案
按热度按时间55ooxyrt1#
我在做:
而它应该是:
imageLiteral已经返回UIImage。
ujv3wf0j2#
也许我遗漏了什么,但你为什么要加上这个?
正确的语法是