Расслабьтесь Segue не отвергая мнение - PullRequest
0 голосов
/ 10 сентября 2018

Выпуск:

Размотайте, не отклоняя представление, даже если оно работает.

Сценарий:

У меня есть экран «Добавить продукт», и когда продукт добавляется, я запускаю команду «развернуть», которая, в свою очередь, показывает всплывающее окно: «Новый продукт добавлен».

Факты: 1) Продукт успешно добавлен в базу данных 2) всплывающее окно «Товар добавлен» отображается в @IBAction перехода в цель цели, и оно появляется 3) Всплывающее окно «Товар добавлен» отображается поверх AddProductScreen вида

Рисунок 1: Существование Unwind segue enter image description here

@IBAction расположен в виде цели:

@IBAction func unwindFromAddProductViewSuccess(segue: UIStoryboardSegue)
    {
        AlertManager.showTimedAlert(title: "Success", message: "New Product added", timeShowing: 1, callingUIViewController: self)
    }

Функция, вызываемая в AddProductView для регистрации продукта:

private func registerProductAndPerformSegue(productToRegister prod: Product)
    {
        self.registerProduct(prodToRegister: prod)
        Constants.logger.debug("New product registered")
        self.performSegue(withIdentifier: "unwind_from_add_product_success", sender: self)

    }

В «Представлении продукта» после нажатия кнопки «Подтвердить» отображается предупреждение «Вы уверены?» а затем вам предлагается нажать «Да» или «Нет».

Это код для предупреждения:

AlertManager.ShowAlert(controllerToShowAlert: self, alertTitle: LocalizationStrings.Products.ADD_PRODUCT_TITLE, alertText: LocalizationStrings.Products.ADD_PRODUCT_CONFIRMATION,
                                           alertStyle: UIAlertControllerStyle.alert,
                                           leftButtonAction: UIAlertAction(title: LocalizationStrings.YES_TEXT, style: .default, handler:
                                            {
                                                (action: UIAlertAction!) in

                                                let user = Auth.auth().currentUser

                                                if let user = user
                                                {
                                                    let product : Product = Product(name: name!, price: Double(price!)!, currency: "USD", description: desc!,
                                                                                    location: "USA", ownerID: user.uid, ownerName: user.displayName!, uniqueID: "", mainImageURL: nil, category: category)


                                                    let storageRef = Storage.storage().reference().child(product.getUniqueID()).child("pic0.jpg")
                                                    if let mainChosenImage = self.selectedImageToUpload
                                                    {
                                                        Constants.logger.debug("Product picture chosen")
                                                        if let uploadData = UIImageJPEGRepresentation(mainChosenImage, 0.2)
                                                        {
                                                            storageRef.putData(uploadData, metadata: nil)
                                                            {
                                                                (StorageMetaData, error) in
                                                                if error != nil
                                                                {
                                                                    Constants.logger.error("Add Product: Couldn't store image in database!")
                                                                    return
                                                                }

                                                                self.mainImageURL = StorageMetaData?.downloadURL()?.absoluteString
                                                                if let urlString = self.mainImageURL
                                                                {
                                                                    product.AddImageURLToProduct(URL: urlString)
                                                                    self.registerProductAndPerformSegue(productToRegister: product)
                                                                }
                                                            }
                                                        }
                                                        else
                                                        {
                                                            Constants.logger.error("Couldn't convert uploaded image to UIImageJPEGRepresentation")
                                                        }
                                                    }
                                                    else
                                                    {
                                                        Constants.logger.debug("Product picture NOT chosen")
                                                        self.registerProductAndPerformSegue(productToRegister: product)
                                                    }
                                                }
                                           }),

                                           rightButtonAction: UIAlertAction(title: LocalizationStrings.NO_TEXT, style: .cancel, handler: { (action: UIAlertAction!) in
                                            print("Handle Cancel Logic here")
                                           }))

Что я здесь не так делаю?

1 Ответ

0 голосов
/ 10 сентября 2018

Без дополнительной информации о настройке раскадровки и вашем коде трудно сказать, в чем именно заключается проблема. Но я предполагаю, что у вас есть два контроллера представления, и я постараюсь провести вас через шаги, чтобы сделать unwindSegue, и вы можете проверить, возможно, вы что-то пропустили.

Предполагается, что у вас есть два контроллера представления: FirstViewController and AddProductViewController , and AddProductViewController` представлен с использованием push-перехода.

Внутри FirstViewController у вас есть:

@IBAction func unwindFromAddProductViewSuccess(segue: UIStoryboardSegue) {
    AlertManager.showTimedAlert(title: "Success", message: "New Product added", timeShowing: 1, callingUIViewController: self)
}

Затем вы подключаете кнопку «сохранить» или «добавить» из AddProductViewController к unwindFromAddProductViewSuccess: методу действия.

Вы также можете подключить кнопку «сохранить» или «добавить» к SecondViewController для отладки вызова segue:

class SecondViewController: UIViewController { 
    @IBOutlet weak var saveButton: UIBarButtonItem!

    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        guard let uiBarButtonItem = sender as? UIBarButtonItem else {
            print("There is no UIBarButtonItem sender")
            return
        }

        if saveButton == uiBarButtonItem {
            print("save button tapped")
        }
        print("A segue with an identifier \(segue.identifier ?? "") was called.")
    }
}

Предполагая, что у вас нет элемента кнопки панели и вы хотите вызвать unwidnSegue вручную, возможно, после того, как пользователь нажмет на действие UIAlertController, вы можете сделать что-то вроде этого:

@IBAction func orderButtonTapped(_ sender: UIButton) {
    let alert = UIAlertController(title: "Order Placed!", message: "Thank you for your order.\nWe'll ship it to you soon!", preferredStyle: .alert)
    let OKAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: {
    (_)in
        self.performSegue(withIdentifier: "unwindToMenu", sender: self)
    })

    alert.addAction(OKAction)
    self.present(alert, animated: true, completion: nil)
}

В некоторых случаях UIViewController, от которого вы пытаетесь размотаться, находится в нижней части стека UINavigationController, в этом случае вызов unwindSegue ничего не сделает. Был похожий вопрос, связанный с этим раньше, здесь .

Я надеюсь, что эта информация поможет вам разобраться в проблеме.

...