I am trying to configure CocoaPods CVCalendar for my application, but after integrating it into my Xcode project, the content is not displayed through UIViews . Essentially, whenever I connect the views with the CVCalendarView and CVCalendarMenuView , the views just don't show up. Here is the ViewController code that I still have, and help would be ViewController appreciated!
import UIKit import CVCalendar class ViewController: UIViewController, CVCalendarViewDelegate, CVCalendarMenuViewDelegate { @IBOutlet weak var menuView: CVCalendarMenuView! @IBOutlet weak var calendarView: CVCalendarView! override func viewDidLoad() { super.viewDidLoad()
source share