Questions tagged [kal]

Kal is an open source calendar component for the iPhone (the UI is designed to match MobileCal) .

Kal provides an open-source implementation of the month view in Apple's mobile calendar app (MobileCal). When the user taps a day on the calendar, any associated data for that day will be displayed in a table view directly below the calendar.

Source: Kal github

38 questions
5
votes
1 answer

iOS - how can i add events to kal library in Objective C?

I work in project need calendar view with events , i try many libraries but finally i decide to use kal library as its have ability to add events Calendar.h #import "Kal.h" #import "NSDate+Convenience.h" #import "EventKitDataSource.h" @interface…
Mina Fawzy
  • 20,852
  • 17
  • 133
  • 156
5
votes
1 answer

Kal Calendar Walkthrough

I am new to obj c and I am not understanding how to use Kal Calendar. Would anyone be willing to help a new app developer walk through the process? I have it installed to my app but don't know how to use it. I understand if you don't respond, I cant…
TIDev
  • 109
  • 4
  • 10
4
votes
1 answer

Disable previous dates in kalcalendar view in iPhone

I have implemented calendar view in iPhone using Kal library. The source code is here https://github.com/klazuka/Kal. I want disable the previous dates. Only the today date and the future date must be clickable.
Warrior
  • 39,156
  • 44
  • 139
  • 214
3
votes
1 answer

Working with the Kal calendar

Currently I have implemented the Kal calendar within one of my tabBarViewControllers and the layout is perfect. I now want to create a button that the user clicks and the calendar instantly highlights the current day in the a monthly calendar view,…
jsetting32
  • 1,632
  • 2
  • 20
  • 45
2
votes
0 answers

Kal calendar on Xcode

I am using the Kal calendar component for a leave management application on Xcode 4.2. I am developing the application for iPad. I am highlighting From Date and To Date when the user applies for a leave in a particular month using tap on a tile…
2
votes
0 answers

Iphone: Event Creation using Kal

Hi i am in the process of making a tab bar application where one of the tabs is a calendar.. To make the calendar i am using the Kal open source framework (http://github.com/klazuka/Kal) I am currently trying to add an event creation button to add…
Ibz
  • 518
  • 1
  • 8
  • 26
2
votes
1 answer

How to add events to Kal calendar library for iOS?

I'v integrated Kal calendar in my app. Now i'v to add events to calendar that i receive from server as JSON and show a dot where an event is present on calendar. I've looked in example code given in github sample project but did not get any clue…
Blios
  • 719
  • 1
  • 16
  • 30
2
votes
0 answers

Kal calendar in storyboard in combination with Tabbar

I am working with a storyboard and a tabbar controller. Inside the storyboard I added a viewController and made it's class AgendaViewController. this Viewcontroller is embeded inside a navigation controller. Now in the .m of my AgendaViewController…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
1
vote
2 answers

Xcode 4 and kalviewcontroller

Do you know how to import the KalViewController opensource library for iPhone in Xcode 4?
Sahir
  • 436
  • 1
  • 5
  • 19
1
vote
3 answers

UI Issue with kal calendar for ipad iOS 10

I'm using Kal calendar, which is open source. The issue here is dates are not rendering properly with iOS 10. Please let me know if you have solution or what is causing the issue. screenshot: https://github.com/klazuka/Kal/issues/106 Thanks
selva
  • 799
  • 2
  • 13
  • 25
1
vote
0 answers

How to Integrate Kal Calendar?

I am fairly new to iOS development, and have a project in mind that would benefit from a third-party calendar interface. However, I'm having trouble just getting started. Feeling a little disappointed as well because I have searched high and low…
1
vote
1 answer

iOS - single select in Kal calendar

i face little problem with kal calendar library, I cant use single selection , when I select a day the next day is selected , i need single select without offset here is the problem here is the code in applicationDidFinishLaunching //#define…
Mina Fawzy
  • 20,852
  • 17
  • 133
  • 156
1
vote
2 answers

Kal calendar month not showing

Here is the link to the github https://github.com/phaibin/Kal This is what it is suppose to look like However this is what I am getting Here are the codes .h file: #import @class KalViewController; @interface Planner_Calendar :…
Malcolm
  • 289
  • 2
  • 9
1
vote
2 answers

Kal Calendar for Universal App

I am updating my app to a universal app but there is something wrong with the Kal Calendar: From this answer it says I should change: const CGSize kTileSize = { 46.f, 44.f }; to const CGSize kTileSize = { 109.0f, 109.0f }; but then it looks…
Abdullah Shafique
  • 6,878
  • 8
  • 35
  • 70
1
vote
1 answer

How to change cell height in Kal calendar

I've set up Kal calendar in my project. I've added my custom cell from xib file. It's shown properly but can't change cell height in any way. Tried in xib file, tried in "heightForRowAtIndexPath" but didn't worked at all. Anything else I should try?
Lukasz Mozdzen
  • 137
  • 1
  • 1
  • 8
1
2 3