SwipeViewController
概述
这是一个可以通过滑动来关闭的 UIViewController。
使用方法
通过 SSH: 对于计划频繁进行直接提交的用户,通过 SSH 克隆可以提供更好的体验(这需要将 SSH 密钥上传到 GitHub)
$ git clone [email protected]:keisukeYamagishi/SwipeViewController.git
通过 https: 对于只检出来源作为只读的,HTTPS 工作得最好
$ git clone https://github.com/keisukeYamagishi/SwipeViewController.git
示例代码
let swipeVc = SwipeViewController.instantiateViewController
self.present(swipeVc, animated: true, completion: nil)
代理方法
extension ViewController: SwipeViewControllerDelegate{
func swipeView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print ("indexPath: \(indexPath)")
}
}