标签: arrays swift optional
所以我有一个数组:var pics:[UIImage?] = []
var pics:[UIImage?] = []
当我输入:pics.removeLast()
pics.removeLast()
XCode返回错误为"Expression of type 'UIImage?' is unused"
"Expression of type 'UIImage?' is unused"
如何删除最后一项没有错误?
答案 0 :(得分:2)
从方法声明中可以看出,removeLast()返回一个Iterator.Element。要使警告静音,您可以使用_。
示例:_ = pics.removeLast()