Swift 3 - 在视图控制器之间传递数据,然后再传递给另一个 2
Posted
技术标签:
【中文标题】Swift 3 - 在视图控制器之间传递数据,然后再传递给另一个 2【英文标题】:Swift 3 - Passing data between a View Controller and after that to another 2 【发布时间】:2018-03-04 01:02:31 【问题描述】:我正在尝试执行一个它不起作用的 segue。 我想要做的是发送我在我的视图控制器(主)的文本字段中拥有的数据,之后我想将它发送到一个名为 OperationsController 的视图控制器,然后将它发送到另一个视图(CreateController & ListController)所以我可以使用相同的数据并将其发送到 php 文件并获取数据以填充 ListController 中的表视图。并让 CreateController 获取电子邮件(简而言之就是数据)并根据电子邮件执行查询并插入数据库。 无论如何,我尝试将数据发送到操作到标签中并且不起作用。 这是我的代码
视图控制器:。
import UIKit
class ViewController: UIViewController
var datas:[Usuario]?
struct Usuario : Codable
let correo: String?
let contrasena: String?
@IBOutlet weak var txtError: UILabel!
@IBOutlet weak var txtCorreo: UITextField!
@IBOutlet weak var txtContra: UITextField!
override func viewDidLoad()
super.viewDidLoad()
override func didReceiveMemoryWarning()
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
@IBAction func btnLogear(_ sender: Any)
let urlString = "http://localhost:8080/swiftdb/logear.php"
guard let url = URL(string: urlString) else return
URLSession.shared.dataTask(with: url) (data, response, error) in
if error != nil
print(error!.localizedDescription)
guard let data = data else return
//Implement JSON decoding and parsing
do
//Decode retrived data with JSONDecoder and assing type of Article object
let articlesData = try JSONDecoder().decode([Usuario].self, from: data)
//Get back to the main queue
DispatchQueue.main.async
self.datas = articlesData
let aarti = self.datas
for item in aarti!
let correos = item.correo
let contras = item.contrasena
if(item.correo == self.txtCorreo.text && item.contrasena == self.txtContra.text)
let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "OP") as! OpcionesController
self.present(nextViewController, animated:true, completion:nil)
self.performSegue(withIdentifier: "segue", sender: self)
self.txtError.text = " "
else
self.txtError.text = "Datos Incorrectos"
catch let jsonError
print(jsonError)
.resume()
override func prepare(for segue: UIStoryboardSegue, sender: Any?)
if let destination = segue.destination as? OpcionesController
destination.name = txtCorreo.text
OperationsController:。
import UIKit
class OpcionesController: UIViewController
var name: String?
@IBOutlet weak var displayLbl: UILabel!
override func viewDidLoad()
super.viewDidLoad()
if let nametoDisplay = name
displayLbl.text = name
override func didReceiveMemoryWarning()
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?)
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
*/
【问题讨论】:
if let nametoDisplay = name
删除这行代码,零意义,直接写displayLbl.text = name
没用。还是不显示
【参考方案1】:
在调用presentViewController
之前添加:
nextViewController.name = yourTextField.text
您也可以删除segue
呼叫。这是多余的。
这是我过去使用过的一个例子:
@IBAction func doSegue(_ sender: UIButton)
buttonTag = sender.tag
let storyboard = UIStoryboard (name: "Main", bundle: nil)
let resultVC = storyboard.instantiateViewController(withIdentifier: "ResultViewController")as! ResultViewController
// Communicate with new VC - These values are stored in the destination
// you can set any value stored in the destination VC here
resultVC.firstValue = buttonTag
resultVC.secondValue = randomOpponentValue()
self.navigationController?.pushViewController(resultVC, animated: true)
【讨论】:
由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“接收方()没有标识符为“segue”的segue,问题是我之间有手动segue那些观点 没关系,非常感谢,但非常感谢,它成功了。所以如果我想将我现在在 displayLbl 中的信息发送到另一个视图,我必须做同样的事情? 如果您要多次执行此操作,您可能应该使用数据源。这是我之前发布的Answer,可能会对您有所帮助。dataSource
是一种在应用程序中任意位置传递数据的方法
如果您有任何问题,请告诉我。【参考方案2】:
1.所以去掉这段代码,因为如果你打电话给performSegue
,你就不需要那个了。
let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "OP") as! OpcionesController
self.present(nextViewController, animated:true, completion:nil)
2.然后在prepareForSegue
override func prepare(for segue: UIStoryboardSegue, sender: Any?)
if segue.identifier == “YourSegueIdentifier"
let destination: OpcionesController = segue.destination as! OpcionesController
destination.name = txtCorreo.text
3.替换此代码:
if let nametoDisplay = name
displayLbl.text = name
与:
displayLbl.text = name
【讨论】:
你应该只调用 2 个中的一个。不能同时调用present
和 segue
如果你需要在不同的时间去不同的视图,你应该重构代码。以上是关于Swift 3 - 在视图控制器之间传递数据,然后再传递给另一个 2的主要内容,如果未能解决你的问题,请参考以下文章