我正在开发一个基于日期的应用程序。我在我的 Swift 项目中实现了一个日历。它可以ios 8
完美运行,但ios 7
无法正常工作。我刚刚集成MBCalendarKit
到我的 Swift 项目中。中应该有一个日历视图ViewController
。您可以从此链接找到我的项目
日历集成项目
这是我的基本代码。我认为应该有子父导航问题。请帮我解决这个问题。
class ViewController: UIViewController, CKCalendarViewDelegate, CKCalendarViewDataSource {
var data : NSMutableDictionary
var calendar = CKCalendarViewController()
var newdata = CKCalendarView()
required init(coder aDecoder: NSCoder) {
data = NSMutableDictionary()
super.init(coder: aDecoder)
}
override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: NSBundle?) {
self.data = NSMutableDictionary()
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
}
override func viewDidLoad() {
super.viewDidLoad()
calendar.dataSource = self
// self .addChildViewController(calendar)
// self.view.addSubview(calendar.view)
// calendar .didMoveToParentViewController(self)
// targetController.view.superview.center = self.view.center;
self.parentViewController?.presentViewController(calendar, animated: true, completion: nil)
let title : NSString = NSLocalizedString("Add Swift Demo", comment: "")
let date : NSDate = NSDate(day: 14, month: 4, year: 2016)
let event : CKCalendarEvent = CKCalendarEvent(title: title as String, andDate: date, andInfo: nil)
self.data[date] = [event]
}
func calendarView(calendarView: CKCalendarView, willSelectDate date: NSDate) {
print("will select called")
}
func calendarView(calendarView: CKCalendarView, didSelectDate date: NSDate) {
print("didselect date called")
let ntview = noteview(nibName: "noteview", bundle: nil)
self.navigationController?.pushViewController(ntview, animated: true)
//self.navigationController?.popViewControllerAnimated(false)
}
func calendarView(calendarView: CKCalendarView!, eventsForDate date: NSDate!) -> [AnyObject]! {
return self.data.objectForKey(date) as [AnyObject]!
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}