我有一個UITableView
五個靜態單元格。如何通過UITableViewCell打開URL
我試圖做到這一點,當我點擊其中一個單元格時,它會打開一個特定的URL。每個單元格都有其唯一的URL。
我該怎麼做?
使用Swift 3,Xcode。
謝謝!
代碼:
import UIKit
import Kingfisher
class SettingsTableView: UITableViewController {
@IBAction func clearCache(_ sender: Any) {
ImageCache.default.clearMemoryCache()
ImageCache.default.clearDiskCache()
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.white]
self.navigationController!.navigationBar.barTintColor = UIColor.black
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
override func viewWillAppear(_ animated: Bool) {
self.navigationController?.hidesBarsOnTap = false
}
override var prefersStatusBarHidden: Bool {
return true
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
}
}
使用 - '覆蓋FUNC的tableView(_的tableView:UITableView的,didSelectRowAt indexPath:IndexPath){ //你的代碼... }' – iDeveloper
@iDeveloper我不知道我的理解。您能否將該代碼作爲回覆發佈?謝謝。 – Miles
你想打開URL,點擊tableViewCell? – iDeveloper