微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在外部函数swift中从表行使用indexPath

如何解决在外部函数swift中从表行使用indexPath

对于uni项目来说是新手,但是我有一个表格视图,其中记录了朋友的详细信息

用户可以选择编辑朋友或删除朋友。 为此,我创建了一个长按手势以删除朋友,但是我不确定如何将indexPath传递给该函数

这是我当前的布局:

import UIKit

class view_19342665: UIViewController,UITableViewDelegate,UITableViewDataSource {
    @IBOutlet weak var tableView: UITableView!
    
    var friends: [Friends] = []
    
    func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
        return friends.count
    }
    func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell:UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "friends",for: indexPath)
        cell.textLabel?.adjustsFontSizetoFitWidth = true;
        cell.textLabel?.font = UIFont.systemFont(ofSize: 13.0)
        cell.textLabel?.text = friends[indexPath.row].displayInfo
        
        return cell
    }
    
    func tableView(_ tableView: UITableView,didSelectRowAt indexPath: IndexPath) {
        let id = friends[indexPath.row].studentID
        let appDelegate = UIApplication.shared.delegate as! AppDelegate
        appDelegate.removeRecord(id: Int(id))
    }
    

    
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        tableView.delegate = self
        tableView.dataSource = self
        let appDelegate = UIApplication.shared.delegate as! AppDelegate
        friends = appDelegate.getFriendInfo()
        
        let longPress = UILongPressGestureRecognizer(target: self,action: #selector(handleLongPress(sender:)))
        tableView.addGestureRecognizer(longPress)
        
        
        self.tableView.rowHeight = 33.0
        
    }
    override var canBecomeFirstResponder: Bool{
        return true
    }
    @objc func handleLongPress(sender:UILongPressGestureRecognizer ){
        if sender.state == .began{
            // delete user
            
        }
        else{
            //edit user
        }
        
    }
    
}

现在我可以删除函数中的行。

这就是我想要实现的目标:

func tableView(_ tableView: UITableView,didSelectRowAt indexPath: IndexPath) {
        let id = friends[indexPath.row].studentID

        handleLongPress(id)
    }

func handleLongPress(id : Int){
let appDelegate = UIApplication.shared.delegate as! AppDelegate
 if sender.state == .began{
            appDelegate.removeRecord(id: Int(id))
            }
else{
  appDelegate.editRecord(id: Int(id))


}

有人可以帮我用长按手势使用ID删除

解决方法

该手势应添加到cellForRowAt内的表格单元中,而不是表格本身

let longPress = UILongPressGestureRecognizer(target: self,action: #selector(handleLongPress(_:)))
cell.contentView.addGestureRecognizer(longPress)
cell.contentView.tag = indexPath.row

然后

@objc func handleLongPress(_ tap:UILongPressGestureRecognizer) {
   guard  tap.state == .ended && let index = tap.view?.tag else { return }
   // use index
}   

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。