Szybki 5
Dobrze Matt Price Odpowiedź jest perfekcyjnie do przekazywania danych, lecz idę, aby go przerobić, w najnowszej wersji Swift ponieważ wierzę nowe programiści uważają, że jest rzucić wyzwanie ze względu na nową składnię i metody / ram, jak oryginalny post jest w Objective-C.
Istnieje wiele opcji przekazywania danych między kontrolerami widoku.
- Korzystanie z kontrolera nawigacyjnego Push
- Korzystanie z Segue
- Za pomocą delegata
- Korzystanie z obserwatora powiadomień
- Korzystanie z bloku
Zamierzam przepisać jego logikę w Swift przy użyciu najnowszego systemu iOS
Przekazywanie danych przez Push Controller Navigation : z ViewControllerA do ViewControllerB
Krok 1. Zadeklaruj zmienną w ViewControllerB
var isSomethingEnabled = false
Krok 2. Wydrukuj zmienną w metodzie ViewDidLoad ViewControllerB
override func viewDidLoad() {
super.viewDidLoad()
//Print value received through segue, navigation push
print("Value of 'isSomethingEnabled' from ViewControllerA : ", isSomethingEnabled)
}
Krok 3. W ViewController Przekaż dane podczas przepychania przez kontroler nawigacji
if let viewControllerB = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ViewControllerB") as? ViewControllerB {
viewControllerB.isSomethingEnabled = true
if let navigator = navigationController {
navigator.pushViewController(viewControllerB, animated: true)
}
}
Oto pełny kod dla:
ViewControllerA
import UIKit
class ViewControllerA: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
//MARK:Passing Data through Navigation PushViewController
@IBAction func goToViewControllerB(_ sender: Any) {
if let viewControllerB = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ViewControllerB") as? ViewControllerB {
viewControllerB.isSomethingEnabled = true
if let navigator = navigationController {
navigator.pushViewController(viewControllerB, animated: true)
}
}
}
}
ViewControllerB
import UIKit
class ViewControllerB: UIViewController {
//MARK: - Variable for Passing Data through Navigation push
var isSomethingEnabled = false
override func viewDidLoad() {
super.viewDidLoad()
//Print value received through navigation push
print("Value of 'isSomethingEnabled' from ViewControllerA : ", isSomethingEnabled)
}
}
Przekazywanie danych przez segment : Od ViewControllerA do ViewControllerB
Krok 1. Utwórz segment z ViewControllerA do ViewControllerB i podaj Identifier = showDetailSegue w Storyboard, jak pokazano poniżej
Krok 2. W ViewControllerB Zadeklaruj wykonalnego o nazwie IsomethingEnabled i wypisz jego wartość.
Krok 3. W ViewControllerA pass jest wartośćSomethingEnabled podczas przekazywania Segue
Oto pełny kod dla:
ViewControllerA
import UIKit
class ViewControllerA: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
//MARK: - - Passing Data through Segue - -
@IBAction func goToViewControllerBUsingSegue(_ sender: Any) {
performSegue(withIdentifier: "showDetailSegue", sender: nil)
}
//Segue Delegate Method
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if (segue.identifier == "showDetailSegue") {
let controller = segue.destination as? ViewControllerB
controller?.isSomethingEnabled = true//passing data
}
}
}
ViewControllerB
import UIKit
class ViewControllerB: UIViewController {
var isSomethingEnabled = false
override func viewDidLoad() {
super.viewDidLoad()
//Print value received through segue
print("Value of 'isSomethingEnabled' from ViewControllerA : ", isSomethingEnabled)
}
}
Przekazywanie danych przez delegata : z ViewControllerB do ViewControllerA
Krok 1. Zadeklaruj protokół ViewControllerBDelegate w pliku ViewControllerB, ale poza klasą
protocol ViewControllerBDelegate: NSObjectProtocol {
// Classes that adopt this protocol MUST define
// this method -- and hopefully do something in
// that definition.
func addItemViewController(_ controller: ViewControllerB?, didFinishEnteringItem item: String?)
}
Krok 2. Zadeklaruj delegowanie zmiennej wystąpienia w ViewControllerB
var delegate: ViewControllerBDelegate?
Krok 3. Wyślij dane do delegowania wewnątrz metody viewDidLoad ViewControllerB
delegate?.addItemViewController(self, didFinishEnteringItem: "Data for ViewControllerA")
Krok 4. Potwierdź ViewControllerBDelegate w ViewControllerA
class ViewControllerA: UIViewController, ViewControllerBDelegate {
// to do
}
Krok 5. Potwierdź, że wdrożysz delegata w ViewControllerA
if let viewControllerB = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ViewControllerB") as? ViewControllerB {
viewControllerB.delegate = self//confirming delegate
if let navigator = navigationController {
navigator.pushViewController(viewControllerB, animated: true)
}
}
Krok 6. Zaimplementuj metodę delegowania do odbierania danych w ViewControllerA
func addItemViewController(_ controller: ViewControllerB?, didFinishEnteringItem item: String?) {
print("Value from ViewControllerB's Delegate", item!)
}
Oto pełny kod dla:
ViewControllerA
import UIKit
class ViewControllerA: UIViewController, ViewControllerBDelegate {
override func viewDidLoad() {
super.viewDidLoad()
}
//Delegate method
func addItemViewController(_ controller: ViewControllerB?, didFinishEnteringItem item: String?) {
print("Value from ViewControllerB's Delegate", item!)
}
@IBAction func goToViewControllerForDelegate(_ sender: Any) {
if let viewControllerB = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ViewControllerB") as? ViewControllerB {
viewControllerB.delegate = self
if let navigator = navigationController {
navigator.pushViewController(viewControllerB, animated: true)
}
}
}
}
ViewControllerB
import UIKit
//Protocol decleare
protocol ViewControllerBDelegate: NSObjectProtocol {
// Classes that adopt this protocol MUST define
// this method -- and hopefully do something in
// that definition.
func addItemViewController(_ controller: ViewControllerB?, didFinishEnteringItem item: String?)
}
class ViewControllerB: UIViewController {
var delegate: ViewControllerBDelegate?
override func viewDidLoad() {
super.viewDidLoad()
//MARK: - - - - Set Data for Passing Data through Delegate - - - - - -
delegate?.addItemViewController(self, didFinishEnteringItem: "Data for ViewControllerA")
}
}
Przekazywanie danych przez Notification Observer : Od ViewControllerB do ViewControllerA
Krok 1. Ustaw i opublikuj dane w obserwatorze powiadomień w ViewControllerB
let objToBeSent = "Test Message from Notification"
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: objToBeSent)
Krok 2. Dodaj obserwatora powiadomień w ViewControllerA
NotificationCenter.default.addObserver(self, selector: #selector(self.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Krok 3. Odbierz wartość danych powiadomienia w ViewControllerA
@objc func methodOfReceivedNotification(notification: Notification) {
print("Value of notification : ", notification.object ?? "")
}
Oto pełny kod dla:
ViewControllerA
import UIKit
class ViewControllerA: UIViewController{
override func viewDidLoad() {
super.viewDidLoad()
// add observer in controller(s) where you want to receive data
NotificationCenter.default.addObserver(self, selector: #selector(self.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
}
//MARK: Method for receiving Data through Post Notification
@objc func methodOfReceivedNotification(notification: Notification) {
print("Value of notification : ", notification.object ?? "")
}
}
ViewControllerB
import UIKit
class ViewControllerB: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
//MARK:Set data for Passing Data through Post Notification
let objToBeSent = "Test Message from Notification"
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: objToBeSent)
}
}
Przekazywanie danych przez blok : z ViewControllerB do ViewControllerA
Krok 1. Zadeklaruj blok w ViewControllerB
var autoryzacjaCompletionBlock: ((Bool) -> ())? = {_ in}
Krok 2. Ustaw dane w bloku w ViewControllerB
if authorizationCompletionBlock != nil
{
authorizationCompletionBlock!(true)
}
Krok 3. Odbierz dane bloku w ViewControllerA
//Receiver Block
controller!.authorizationCompletionBlock = { isGranted in
print("Data received from Block is :", isGranted)
}
Oto pełny kod dla:
ViewControllerA
import UIKit
class ViewControllerA: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
//MARK:Method for receiving Data through Block
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if (segue.identifier == "showDetailSegue") {
let controller = segue.destination as? ViewControllerB
controller?.isSomethingEnabled = true
//Receiver Block
controller!.authorizationCompletionBlock = { isGranted in
print("Data received from Block is :", isGranted)
}
}
}
}
ViewControllerB
import UIKit
class ViewControllerB: UIViewController {
//MARK:Variable for Passing Data through Block
var authorizationCompletionBlock:((Bool)->())? = {_ in}
override func viewDidLoad() {
super.viewDidLoad()
//MARK:Set data for Passing Data through Block
if authorizationCompletionBlock != nil
{
authorizationCompletionBlock!(true)
}
}
}
Kompletną przykładową aplikację można znaleźć na moim GitHub Daj mi znać, jeśli masz jakieś pytania na ten temat.
@class ViewControllerB;
powyższą definicję @protocol? Bez niego pojawia się błąd „Oczekiwany typ” na ViewControllerB w wierszu:- (void)addItemViewController:(ViewControllerB *)controller didFinishEnteringItem:(NSString *)item;
w@protocol
deklaracji