2016-03-08 41 views
0

嗨,並提前感謝任何能夠幫助我的人。 我正在與EPCalendarPicker(一個快速日曆庫)合作,我想知道我是否能夠在容器中顯示日曆,而不是當前如何在我的其他內容上打開全屏。我可以在容器中顯示EPCalendar而不是全屏嗎?

let navigationController = UINavigationController(rootViewController: calendarPicker) 
    self.presentViewController(navigationController, animated: true, completion: nil) 

有什麼辦法解決這個問題嗎?

謝謝!

回答

1

我想出了一個辦法這樣做:

calendarPicker = EPCalendarPicker(startYear: currentYear, endYear: currentYear+2, multiSelection: false, selectedDates: [date!]) 
       calendarPicker.calendarDelegate = self // so the delegate methods work 
       calendarViewer.addSubview(calendarPicker.view) // instead of presenting as a new VC, add the calendar picker view to your own custom view 
       calendarPicker.view.frame = calendarViewer.bounds // set the frame to the container's bounds 

,你是好去。希望這可以幫助

+0

吉格斯我:崩潰我的應用程序原因:'UICollectionView數據源未設置' –

相關問題