按钮,根据获取的当前单元格索引路径,在自定义单元格中单击

时间:2016-05-13 15:07:27

标签: iphone swift uitableview custom-cell nsindexpath

我需要知道如何在自定义单元格中编写segue代码或控制器代码。

如果我们不能这样做,如何在该自定义单元格内的按钮上单击特定自定义单元格的索引路径。

我做过的事,

  1. 一个带有UITableView的ViewController,它在自定义单元格上填充api的值。

  2. 自定义单元格包含一些细节和两个按钮。

  3. 一键是打电话功能。

  4. 另一个按钮是在map-kit中获取方向。

  5. 来api,它具有拨打电话和获取方向的价值(它包含纬度和经度)。

  6. 来自自定义单元类的
  7. 我执行电话呼叫功能(没问题。)。

  8. 我只有获取方向功能的问题。

  9. 这里是问题解释,

    代码:

    我的自定义单元格类

    class Usercell: UITableViewCell {
    
    var phoneNumber = ""  // get the phone number
    
    var latlng:NSArray = []
    
    @IBOutlet weak var vendorName3: UILabel!
    
    @IBOutlet weak var vendorAdddress3: UILabel!
    
    @IBOutlet var FeaturedDisplayText: UILabel!
    
    @IBOutlet weak var getDirectionButton: UIButton!
    
    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }
    
    
    // action method for call button tap
    @IBAction func CallbuttonTap(sender: AnyObject) {
    
        let phoneString = "tel://\(phoneNumber)"
        let openURL = NSURL(string:phoneString)
        if openURL == nil {
            return
        }
        let application:UIApplication = UIApplication.sharedApplication()
        if (application.canOpenURL(openURL!)) {
            application.openURL(openURL!)
        }
    
    }
    
    @IBAction func GetDirectionButtonTapped(sender: AnyObject) {
    
        print("Get direction button tapped.")
    
        print("LatLng for this cell is:",latlng)
    }
    
    override func setSelected(selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)
    
        // Configure the view for the selected state
    }
    }
    

    在上面的代码基础知识显示功能正在运行。

    我在 cellForRowAtIndexPath

    中写过UIButton单元格点击功能
    cell1.getDirectionButton.addTarget(self, action: #selector(ContainerViewController.GetDirection(_:)), forControlEvents: UIControlEvents.TouchUpInside)
    

    就像上面那样。(注意:ContainerViewController是我的ViewController,它包含我的tableView和这个自定义单元格。)

    GetDirection()包含

    let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
    
        let vc: mapvc2 = storyboard.instantiateViewControllerWithIdentifier("mapvc2") as! mapvc2
        let indexPath = ???
    
        let DestinationLocation = CLLocationCoordinate2D(latitude: val[indexPath.row].latlng[0] as! Double, longitude: val[indexPath.row].latlng[1] as! Double)
    
        vc.PlotRoute(DestinationLocation)
    
        vc.navigationItem.leftBarButtonItem = UIBarButtonItem(title: "< back", style: UIBarButtonItemStyle.Plain, target: self, action: #selector(ContainerViewController.goBack))
        let navController = UINavigationController(rootViewController: vc)
    
        dispatch_async(dispatch_get_main_queue(),{
    
            self.presentViewController(navController, animated: true, completion: nil)
    
        })
    

    我对视图控制器导航没有任何问题。

    我需要设置DestinationLocation的值,所以我需要为按钮单击的单元格获取indexPath。

    请有人帮助我。

1 个答案:

答案 0 :(得分:2)

有一种简单的方法可以完成这项工作:

cellForRowAtIndexPath方法中,您可以使用当前行值为按钮设置标记,如:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = //cell
    cell.myButton.tag = indexPath.row
    cell.myButton.addTarget(self, action: #selector(ViewController.getDirection(_:)), forControlEvents: UIControlEvents.TouchUpInside)
}

和你的功能

func getDirection(sender: UIButton) {
    let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)

    let vc: mapvc2 = storyboard.instantiateViewControllerWithIdentifier("mapvc2") as! mapvc2
    let indexPathRow = sender.tag

    let DestinationLocation = CLLocationCoordinate2D(latitude: val[indexPathRow].latlng[0] as! Double, longitude: val[indexPathRow].latlng[1] as! Double)

    vc.PlotRoute(DestinationLocation)

    vc.navigationItem.leftBarButtonItem = UIBarButtonItem(title: "< back", style: UIBarButtonItemStyle.Plain, target: self, action: #selector(ContainerViewController.goBack))
    let navController = UINavigationController(rootViewController: vc)

    dispatch_async(dispatch_get_main_queue(),{
        self.presentViewController(navController, animated: true, completion: nil)
    })
}

这是你期望的结果吗?