0

我正在使用第三方库 XLPagerTabStrip。我有一个容器 VC 和三个子 VC。现在我有一个按钮,可以在我的 Container VC 中点击显示日历。我希望当我点击任何日期时,它应该将该日期传递给我的子 VC,然后我将根据提供的日期点击 API。我在我的容器 VC 中制定了一个协议,并将日期传递给它的函数,并在我的子 VC 中的扩展中调用该委托,但它没有捕获我的委托。这是我的 Container VC 类的代码,

protocol BookingContainerDelegate {

func selectedDate(selectedDate:String)
}

在这里,我将 selectedDate 传递给我的容器 VC 中的委托函数,

func calendar(_ calendar: FSCalendar, didSelect date: Date, at monthPosition: FSCalendarMonthPosition) {

    let selected = calendar.selectedDate

    let dateFormatter1: DateFormatter = DateFormatter()
    dateFormatter1.dateFormat = "yyyy-MM-dd HH:mm:ss.SSS"
    dateFormatter1.dateFormat = "yyyy-MM-dd"
    print("\(dateFormatter1.string(from: selected!))")

    dateDelegate?.selectedDate(selectedDate: dateFormatter1.string(from: selected!))

    self.popViewTopConstraint.constant = -300
    popUpShowing = false

    UIView.animate(withDuration: 0.3) {
        self.view.layoutIfNeeded()
    }
}

现在在我的 Child VC 中,这就是我调用委托并将数据从委托传递给我的变量的方式,

extension AcceptedBookingVC : BookingContainerDelegate

{

func selectedDate(selectedDate: String) {

    date = selectedDate
}
}

但是当视图被加载时,它并没有抓住我的代表。我如何在 XLPagerTabStrip 的 Child VC 中传递这个日期。这就是我在容器 VC 中调用子 VC 的方式,

 override func viewControllers(for pagerTabStripController: PagerTabStripViewController) -> [UIViewController] {
    let child1 = UIStoryboard().loadAcceptedBookingVC()
    child1.itemInfo = "Accepted"

    let child2 = UIStoryboard().loadPendingBookingVC()
    child2.itemInfo = "Pending"

    let child3 = UIStoryboard().loadHistoryBookingVC()
    child3.itemInfo = " History"

    return [child1,child2,child3]
}
4

1 回答 1

0

在您的父 VC 中检测您当前活动的子 VC 并将委托分配给子 VC

self.dateDelegate = childVC
于 2019-04-04T12:18:24.820 回答