当前位置: 首页 > 知识库问答 >
问题:

Swift-PrepareforSegue不工作[重复]

左丘修齐
2023-03-14

我有三个数组来制作一个tableView和第二个ViewController。一个显示tableView上每个节的标题,一个显示标题,还有一个显示每个单元格的链接。当我构建并点击其中一个单元格时,我会得到:

致命错误:在展开可选值时意外发现nil

在这条线上:

 let url = URL(string: websiteURL)!
print("hello")
import UIKit




class FirstViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {



var headers = ["Bein Sports", "Sky Sports", "Alkass", "Other"]

var channels = [["Bein Sports 1","Bein Sports 2","Bein Sports 3","Bein Sports 4","Bein Sports 5","Bein Sports 6","Bein Sports 7","Bein Sports 8","Bein Sports 9","Bein Sports 10","Bein Sports News"],
                          ["Sky Sports 1","Sky Sports 2","Sky Sports 3","Sky Sports 4","Sky Sports 5"],
                          ["Alkass One", "Alkass Two", "Alkass Three", "Alkass Four", "Alkass Five"],
                          ["BT Sports 1", "BT Sports 2", "Real Madrid TV", "Real Madrid TV 2"]]

var links = [["https://www.google.ca","https://www.facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com"],
             ["https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com"],
             ["https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com","https://facebook.com"],
             ["http://twitter.com","http://facebook.com","http://www.google.com","http://www.instagram.com"]]

var myIndex : IndexPath = IndexPath()

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return channels[section].count
}

func numberOfSections(in tableView: UITableView) -> Int {
    return channels.count //Rows
}

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    return headers[section] //Sections
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
    cell.textLabel?.text = channels[indexPath.section][indexPath.row] //TextLabel
    return cell
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    myIndex = IndexPath(row: indexPath.section, section: indexPath.row)
    performSegue(withIdentifier: "segue", sender: self)
}

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

func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)
{
    if (segue.identifier == "segue") {
        let viewController = segue.destination as! ChannelViewController
        // Now you have a pointer to the child view controller.
        // You can save the reference to it, or pass data to it.
        viewController.websiteURL = links[myIndex.section][myIndex.row]
        print("google")
    }
}
}

下面是第二个视图控制器代码:

import UIKit
import WebKit
import AVKit
import AVFoundation

class ChannelViewController: UIViewController {


    var webView: WKWebView!
    var websiteURL = ""



override func viewDidLoad() {
    super.viewDidLoad()

    // Do any additional setup after loading the view.



    webView = WKWebView()
    webView.scrollView.isScrollEnabled = false


    view.addSubview(webView)
    let url = URL(string: websiteURL)!
    let req:URLRequest = URLRequest(url: url)
    webView.load(req)

    webView.translatesAutoresizingMaskIntoConstraints = false
    let width = NSLayoutConstraint(item: webView, attribute: .width, relatedBy: .equal, toItem: view, attribute: .width, multiplier: 1.0, constant: 0) //Constraints

    let height = NSLayoutConstraint(item: webView, attribute: .height, relatedBy: .equal, toItem: view, attribute: .height, multiplier: 1.0, constant: 0)
    view.addConstraints([width,height]) //Constraints

}


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

共有1个答案

沈树
2023-03-14

您使用prepare for segue的方式是不正确的。

你应该使用

override func prepare(for segue: UIStoryboardSegue, sender: Any?) 

也叫它

self.performSegue(withIdentifier: "segue", sender: nil)
 类似资料:
  • 我正在调用一个API来获取一些数据。API响应以格式返回日期和时间,但当我使用将其解析为时,它显示而不是我从API获得的date.String格式是。 这是我的代码。

  • 问题内容: 我正在尝试使用 prepareForSegue()* 将对象传递到另一个场景 * 我有currentVehicle对象来捕获这些对象。但是,当我尝试运行时,它坏了,并得到有关向下转换的错误。 错误编辑 无法将类型“ XXX.DisplayViewController”(0x1082dcd80)的值强制转换为“ XXX.VehicleDetailsTableViewController”

  • 问题内容: 这个问题可能已经回答了,但我找不到。 这段代码在swift 2中工作正常,但是现在给我一个错误,以删除替代。 确切的错误:“方法不会覆盖其超类中的任何方法” 快速3的新正确方法是什么? 我似乎在任何地方都找不到任何文档。 问题答案: 在Swift 3.0中更改了方法签名 取代这个 用

  • 我创建了这段代码,其中大部分代码都是使用toUpperCase,它应该使单词的每个首字母都大写。没有错误,因此我不确定该方法当前为何不起作用。为什么会这样呢。

  • 问题内容: 我正在用Swift开发iOS应用程序。 我想使用prepareForSegue函数将数据从视图发送到另一个视图。 但是,我的目标视图之前是导航控制器,因此它不起作用。 请问我该怎么做? 问题答案: 在访问目标导航控制器,然后在其顶部: 您可以从目标控制器访问其视图并传递数据。 在旧版本(现在已过时)的Swift和UIKit版本中,代码略有不同:

  • 我目前使用的是Xcode 8.3.3,如果我使用的是UIWebView,我会遇到这个错误,您可以在下面看到,然后在某些项目中或某些时候WebView不工作,而在其他项目中它会工作。我已经用一个空项目对它进行了测试,是的,是UIWebView导致了这些问题。 objc[11182]:类PLBuildVersion在/Applications/xcode . app/Contents/Develope