我使用Google Places API填充了UITableView
个餐馆名称。现在,我正在尝试将segue执行到不同的视图,同时知道使用IndexPath单击了哪个单元格。我已尝试使用didSelectAtIndexRowPath
功能,但它无法识别点击/点击。它应该将数字打印到控制台。我做错了什么?
import UIKit
class ViewController: UIViewController, UITableViewDataSource {
var myIndex = 0
@IBOutlet var restuarantsTable: UITableView!
var restaurantsList = [NSDictionary]()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
restuarantsTable.dataSource = self
let url = "https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=26.2034071,-98.23001239999996&radius=500&type=restaurant&keyword=tacos&key=AIzaSyBRQZV4SOpcJ-icCe9BuZlI48MzONwH5Dw"
downloadRestaurants(urlString: url) { (array) -> () in
self.restaurantsList = array as! [NSDictionary]
// print(self.restaurantsList.count)
self.restuarantsTable.reloadData()
}
}
public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return restaurantsList.count
}
@available(iOS 2.0, *)
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let RCell = tableView.dequeueReusableCell(withIdentifier: "RCell", for: indexPath)
// let imgURL = NSURL(string: imgURLArray[indexPath.row])
// let imageView = RCell.viewWithTag(350) as! UIImageView
RCell.textLabel!.text = restaurantsList[indexPath.row]["name"] as? String
// RCell.imageView?.image = restaurantsList[indexPath.row]["photos"] as? UIImage
return RCell
}
private func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: IndexPath) {
self.performSegue(withIdentifier: "detailSegue", sender: indexPath)
print(restaurantsList[indexPath.row])
}
}
答案 0 :(得分:1)
您必须像UITableViewDelegate
那样符合UITableViewDataSource
,didSelectRowAtIndexPath
是UITableViewDelegate
方法
添加这些行
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
并在viewDidLoad
中restuarantsTable.delegate = self
我认为您还必须在故事板中设置委托
转到此选项卡并按住Ctrl键并拖动到视图控制器以将其设置为委托
答案 1 :(得分:0)
修改代码集restuarantsTable.delegate = self
中的两件事,然后在进行网络调用时在主线程上重新加载表,这将在后台线程中处理。所以也修改下面的代码。
DispatchQueue.main.async({
self.restuarantsTable.reloadData()
})
答案 2 :(得分:0)
Swift 3
<强> ERROR1:强>
您必须添加UITableViewDelegate
protocol
才能使用UITableView
delegate
方法。
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate{}
在viewDidLoad()
:
override func viewDidLoad() {
super.viewDidLoad()
restuarantsTable.dataSource = self
restuarantsTable.delegate = self
}
错误2:
protocol
必须与公众确认。您声明为private
变化
private func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: IndexPath){}
到
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {}
或(在swift 3以下)
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: IndexPath){}