我是新手,很快就会出错。
我正在尝试使用Pod MGSwipeTableCell https://github.com/MortimerGoro/MGSwipeTableCell
在pod文件中安装了pod'MGSwipeTableCell'。在文件检查器的窗格中找到它。

var cell = self.tableView.dequeueReusableCellWithIdentifier(reuseIdentifier)为! MGSwipeTableCell!

引发错误使用未声明类型'MGSwipeTableCell'
Google磁盘https://drive.google.com/file/d/0By_KH6PH75z2OHlXek85YmRpcGc/view上有一个项目
我想念的应该是简单的事情。请帮忙。

最佳答案

在使用文件的开头添加导入语句

import MGSwipeTableCell

关于ios - 使用未声明的类型MGSwipeTableCell,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44866976/

10-11 17:13