我正在开发一个基于日期的应用程序。我在Swift项目中实现了一个日历。它完全适用于ios 8
,但ios 7
无效。我刚刚将MBCalendarKit
集成到我的Swift项目中。 ViewController
中应该有一个日历视图。您可以通过此链接找到我的项目
Calendar Integration Project
这是我的基本代码。我认为应该有儿童导航问题。请帮我解决这个问题。
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.
}
*/
}
答案 0 :(得分:0)
从版本5开始,MBCalendarKit需要iOS 8.0或更高版本。如果您正在寻找iOS 7支持,可以尝试将文件直接拖到Xcode项目中。
版本5为Swift集成添加了许多改进。我审核了可空性代码,并在适当的地方添加了NS_SWIFT_NAME()
。
免责声明:我编写并维护了MBCalendarKit。