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
0
votes
1 answer

how to import MBCalendarKit in your swift project

when I try to import MBCalendarKit in my project, it shows no such module error and linker command error. I tried all the solution given in stackoverflow under this topic and no success. help me. Thanks in advance.
thipoo24
  • 138
  • 15
0
votes
1 answer

How can I customise your's MBCalendarKit?

Great tool you provided us! I loved the table below the calendar. It's reeeeeealy useful. The only issue I'm having is to customize the calendar view... I needed something cleaner. Do you have tips where I can start looking for customising the…
0
votes
1 answer

MBCalendarKit Faulty Frame

I am having a problem with the frame of my CKCalendarView's frame (Which comes with MBCalendarKit). As you can see from the first and second pictures (and a little bit from the third too), the events are beginning to list way below the calendar.…
Hasan Can Saral
  • 2,950
  • 5
  • 43
  • 78
0
votes
1 answer

MBCalendarKit: Connecting CKCalendarDataSource to Core Data

I'm connecting MBCalendarKit with Core Data. This is the code to build a dictionary of events: for (Task *task in _taskArray) { _event = [CKCalendarEvent eventWithTitle:[task valueForKey:@"title"] andDate:[task valueForKey:@"startDate"]…
carlodurso
  • 2,886
  • 4
  • 24
  • 37
0
votes
1 answer

Create Events for MBCalendarKit in iOS

I imported MBCalendar Kit into my project, and I don't know how to add an event or array of events in calendar. I found this code: NSMutableDictionary *eventsDict = [[NSMutableDictionary alloc] init]; for (int i =0; i< eventsArray.count ;i++) { …
0
votes
2 answers

Calendar for iOS with week, day and month view

Can anyone suggest me a good calendar for iOS that has a day view, week view and a month view. Something similar to MBCalendarKit which I downloaded from https://www.cocoacontrols.com/search?utf8=&q=calendar When I integrate this calendar in my…
Leo Joseph
  • 69
  • 1
  • 1
  • 8
0
votes
1 answer

How to show Events for selected month in MBCalendarkit

I am using MBCalendarkit for showing custom calendar in my app. But I unable to show events on calendar. Any help will be appreciated.Thank you.
iSmita
  • 1,292
  • 1
  • 9
  • 24
0
votes
1 answer

Not Getting Correct Info from Dictionary

I am using MBCalendarKit and have it working but I'm trying to use the info dictionary for each event I've created to display the details on a detail page after selecting an event in the calendar view. My events are all created from a plist…
raginggoat
  • 3,570
  • 10
  • 48
  • 108
0
votes
0 answers

MBCalendarKit Crash

I have a main view controller with a button that takes you to the calendar view (which I am using MBCalendarKit for). That and the calendar work just fine. The problem is when I try to go back to the main view from the calendar by tapping the back…
raginggoat
  • 3,570
  • 10
  • 48
  • 108
0
votes
1 answer

ADD Event for MBCalendar Kit in ios

In my app, i am using the MBCalendar Kit I got the source code from MBCalendar from CocoaControl. But how can I add a new event for displaying in the tableview?
AtWork
  • 1,283
  • 1
  • 14
  • 34
-1
votes
2 answers

How to show default calendar in viewcontroller of iOS

I am trying to fetch my default calendar view of iPhone in my viewcontroller . Does it Possible ? Tab on button and open will worked([[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"calshow://"]]; ) and some Third party will also…
SANTOSH
  • 183
  • 1
  • 15
1
2