swift 4 将图像字面量添加到字符串
swift 4 add a image literal to a string
我希望能够将图像添加到带有一些文本的字符串中。在 headerViews 上有一个示例视频,他包含了将图像嵌入到字符串中的数据。
我不知道他是怎么做到的。
这是数据
Section(genre: " Superhero",
movies: ["Guardians of the Galaxy", "The Flash", "The Avengers", "The Dark Knight"],
expanded: false,
subtitle: "Please select a movie"),
Section(genre: " Horror",
movies: ["The Walking Dead", "Insidious", "Conjuring"],
expanded: false,
subtitle: "Please select a movie")
Section
是一个简单的数据结构:
struct Section {
let genre: String!
let movies: [String]!
let expanded: Bool!
let subtitle: String!
init(genre: String, movies: [String], expanded: Bool, subtitle: String){
self.genre = genre
self.movies = movies
self.expanded = expanded
self.subtitle = subtitle
}
之后我尝试将#imageLiteral(resourceName) 与一些文本一起使用,例如
" #imageLiteral(resourceName: "pos") + "a title" "
语法不正确。
如何在字符串中的某些文本前添加图像?
这些不是图像文字;它们是普通字符(如果您将 emoji 视为普通字符)。 Swift 字符串是 unicode 字符串,因此您可以将表情符号字符直接键入字符串文字。
我希望能够将图像添加到带有一些文本的字符串中。在 headerViews 上有一个示例视频,他包含了将图像嵌入到字符串中的数据。
我不知道他是怎么做到的。
这是数据
Section(genre: " Superhero",
movies: ["Guardians of the Galaxy", "The Flash", "The Avengers", "The Dark Knight"],
expanded: false,
subtitle: "Please select a movie"),
Section(genre: " Horror",
movies: ["The Walking Dead", "Insidious", "Conjuring"],
expanded: false,
subtitle: "Please select a movie")
Section
是一个简单的数据结构:
struct Section {
let genre: String!
let movies: [String]!
let expanded: Bool!
let subtitle: String!
init(genre: String, movies: [String], expanded: Bool, subtitle: String){
self.genre = genre
self.movies = movies
self.expanded = expanded
self.subtitle = subtitle
}
之后我尝试将#imageLiteral(resourceName) 与一些文本一起使用,例如
" #imageLiteral(resourceName: "pos") + "a title" "
语法不正确。
如何在字符串中的某些文本前添加图像?
这些不是图像文字;它们是普通字符(如果您将 emoji 视为普通字符)。 Swift 字符串是 unicode 字符串,因此您可以将表情符号字符直接键入字符串文字。