Questions tagged [mbcalendarkit]

MBCalendarKit is a framework for showing a calendar UI on iOS.

MBCalendarKit is a framework written in UIKit for showing a calendar UI on iOS. It includes options for month view, week view, and day view.

MBCalendarKit was created for iOS 6 to show a calendar UI, because most of the open source calendars in existence weren't really working nicely.

The most recent versions support iOS 8 and iPhone 6 and iPhone 6 Plus.

You can get MBCalendarKit here: https://github.com/MosheBerman/MBCalendarKit

26 questions
2
votes
2 answers

TableviewCell select and Move to another view

I used a MBCalendarKit. This is an event shown on tableView method - (void)calendarView:(CKCalendarView *)CalendarView didSelectEvent:(CKCalendarEvent *)event. This method works same as - (void)tableView:(UITableView *)tableView…
A.Kumawat
  • 103
  • 9
2
votes
1 answer

MBCalendar kit framework how to add in my project

I used MBCalendar kit framework. and successfully added in my project, but problem is that months and dates cant show simulator. only one top bar show in this weeks and year show. I attached my output snap shot please find this and show bellow. I…
A.Kumawat
  • 103
  • 9
2
votes
3 answers

How can I improve this implementation involving NSDate comparisons?

I'm the author of a calendar library for iOS, and I'm thinking about how I can improve it, because it's become obvious that people aren't understanding it. Right now, I have a datasource protocol that consists of just one method, and it returns the…
Moshe
  • 57,511
  • 78
  • 272
  • 425
2
votes
1 answer

Issue Creating Events Using MBCalendarKit

I am using MBCalendarKit in my app and I can create events like this: CKCalendarEvent* aCKCalendarEvent = [[CKCalendarEvent alloc] init]; [_infoDict setObject:@"Joint Meetings with KY State Horticulture Society, KY Vegetable Growers Association,…
raginggoat
  • 3,570
  • 10
  • 48
  • 108
1
vote
0 answers

How can I change background color in every sunday using MBCalendarkit

I am using MBCalendarkit. How can I change background color in every sunday.
1
vote
1 answer

How to add label in calendar cell content in MBCalendarKit?

I'm using MBCalendarKit for customising calendar. I want to add to text labels in each calendar cell. For reference download sample code from github "https://github.com/MosheBerman/MBCalendarKit". Edit: To make multiple labels I used a for loop.…
1
vote
0 answers

MBCalendarKit showing black screen in basic tabbed application

I'm fairly new to swift & Xcode and I'm using a basic "tabbed" application template in XCode and I am trying to implement the MBCalendarKit to show a calendar on the first tab view. I am using Cocoapods for the MBCalendar kit. The Basic tabbed…
coopwatts
  • 670
  • 1
  • 8
  • 31
1
vote
1 answer

Using Parse backend with a calendar view iOS

I'm trying to develop an app in objective-c that uses Parse as a backend database and has a calendar in it. I have the user base down and I'm trying to use the open source MBCalendarKit to be able to add events to Parse. I don't know if this is a…
1
vote
0 answers

MBCalendarKit not working

i have followed as per instruction to use MBCalendarKit into my app but it doesn't seem to be working . I am posting my code below in swift . import UIKit class ViewController: CKCalendarViewController, CKCalendarViewDelegate ,…
jaskirat
  • 13
  • 3
1
vote
1 answer

MBCalendar Kit integration in iOS

I have got the source code of Calendar component from https://github.com/MosheBerman/MBCalendarKit/blob/master/README.md I want to integrate this into my app. How do I do it? Can I import any of its frameworks etc? I tried copying all the files…
Smitha
  • 6,110
  • 24
  • 90
  • 161
1
vote
1 answer

What does "[self data][date]" mean?

Can any one just tell me what the below code in iOS mean? Its a piece of code from MBCalendarKit. @property (nonatomic, strong) NSMutableDictionary *data; - (NSArray *)calendarView:(CKCalendarView *)calendarView eventsForDate:(NSDate *)date { …
Leo Joseph
  • 69
  • 1
  • 1
  • 8
0
votes
2 answers

MBCalanderKit add calendar as subview

in my app i want something like iOS calendar app so i am using MBCalanderKit library. In my app i don't want to use CKCalendarViewController as i need to add calendar as subview. For that i am using following code. I am using xCode 7 with swift…
H Raval
  • 1,903
  • 17
  • 39
0
votes
1 answer

How to show Single date in multiple events reload in MBCalendarKit

I am using a Calendar view in my project. I am using a MBCalendarKit. That time single date in single event show. But I want single date on multiple events show. But how it possible please help. - (void) viewWillAppear: (BOOL)animated{ NSArray…
0
votes
1 answer

How to add events by JSON in MBCalendarKit

I used a storyboard and ios 9 , Xcode 7.2, in this project used a calendar view and event show by web server fetch data. I added calendar kit framework and also two file add my project first is CKDemoViewController.h and second is…
A.Kumawat
  • 103
  • 9
0
votes
1 answer

How to integrate MBCalendarkit to my Swift project?

I am developing a date-based application. I have implemented a calendar in my Swift project. It works on ios 8 perfectly but in ios 7 is not working. I have just integrated MBCalendarKit to my Swift project. There should be a calendar view in the…
kalpesh
  • 1,285
  • 1
  • 17
  • 30
1
2