不在Tableview中调用didSelectRowAtIndexPath方法

时间:2016-02-29 13:24:30

标签: ios swift uitableview didselectrowatindexpath

我在 UIViewController 中嵌入了 UITabbar ,然后在我的 UITabbar 中添加了一些UITabbarItems。我还创建了另一个 UIViewController ,其中嵌入了 UITableView

我已将 UITabbarItem 中的一个与新创建的 UIViewController (其中包含UITableView)相关联。

当我运行程序并点击 UITabbarItem 时,它会显示一个表格视图,但当我选择任何一行表格时, UITableView 中显示的数据会消失。 然后我调试代码,发现didSelectRowAtIndexPath方法没有调用。

我在互联网上搜索并找到this,但无法理解。 我试过通过实现两种类型的 tableViews UITableViewControllerUIViewController并带有UITableView),但仍然存在同样的问题。
我被困在这里。有人请帮助我。如何解决这个问题。
我会非常感谢你。
这是我的快速代码

import UIKit

class DashboardViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {

    @IBOutlet weak var tableView: UITableView!
    var selectedIndexPathForCheckMark:NSIndexPath?

        var items: [String] = ["We", "Heart", "Swift"]

    override func viewDidLoad() {
        super.viewDidLoad()

        self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "MyCell")
    }


    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return items.count
    }
 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = self.tableView.dequeueReusableCellWithIdentifier("MyCell")!UITableViewCell

        cell.textLabel?.text = self.items[indexPath.row]
        return cell
    }
 func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        print("You selected cell #\(indexPath.row)!")

        selectedIndexPathForCheckMark = indexPath
        tableView.reloadData()
    }

这是它的快照

enter image description here enter image description here 来自右侧的第二个UITabbarItem实现UITableView

1 个答案:

答案 0 :(得分:0)

遵循步骤:
1.拍摄视图控制器并添加tableview 2.使用MytabelView设置插座 3.将tableview的Datasource和delegate设置为ViewController
4.并将以下代码放在ViewController类中 5.获取名为MyCell的自定义tableview单元格,其中包含单元格标识符" MyCellid"
6.使用名称MyCell创建swift文件,使其成为UITableViewCell的子类 7.选择自定义单元格并将其分配给MyCell

我认为已经完成了

import UIKit

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate{

@IBOutlet weak var MytableView: UITableView!
 var items: [String] = ["We", "Heart", "Swift"]
override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
    self.MytableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "MyCellid")
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = self.MytableView.dequeueReusableCellWithIdentifier("MyCellid")! as UITableViewCell

    cell.textLabel?.text = self.items[indexPath.row]
    return cell
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return items.count
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    print("You selected cell #\(indexPath.row)!")

}
}