Questions tagged [calendarkit]

For questions about CalendarKit - a Swift calendar UI library for Apple platforms.

CalendarKit is a fully customizable calendar library written in Swift. It was designed to look similar to the iOS Calendar app, but allow customization if needed. To make modifications easier, CalendarKit is composed of multiple small modules. They can be used together, or on their own.

41 questions
1
vote
1 answer

CalendarKit Implementation Basics

I'm working on an app that needs a Calendar section, and CalendarKit looks really great from the preview images. However, I'm new to Swift and not sure exactly how to work with it. I've installed the CocoaPod fine, but the code listed on the…
Coy
  • 11
  • 2
1
vote
0 answers

Detect user interaction with a view using UIGestureDetector

I need to determine if the user is holding his finger on the view or has released it. Ideally, I need an UIGestureRecognizer that will register touch start and end events, but without preventing subviews from handling user gestures. It important to…
RareScrap
  • 541
  • 1
  • 7
  • 17
1
vote
1 answer

CalendarKit - EventView has no member data

I've tried to replicate the "Usage" section of CalendarKit's documentation and I simply can't get the EventView.data when the user selects an EventView. My controller conforms to DayViewController and the EventViews display normally on the DayView…
Ivor Baric
  • 11
  • 1
1
vote
1 answer

Can't get a Navigation item with CalendarKit

I've tried to get it to work like so: class CalendarViewController: DayViewController { override func viewDidLoad() { super.viewDidLoad() title = "CalendarKit Demo" navigationItem.rightBarButtonItem =…
Bernhard Engl
  • 243
  • 1
  • 2
  • 12
1
vote
0 answers

CalendarKit usage issue 'pod frameworks' and 'no such module' in Xcode

Does anyone know how to fix this issue? It is a new project file with just this code and I try to build it. From: http://cocoadocs.org/docsets/CalendarKit/0.1.7/ Image Pods red : import UIKit import CalendarKit class ViewController:…
T.O
  • 11
  • 1
1
vote
0 answers

fetching data in calendarkit from json file

override func eventsForDate(_ date: Date) -> [EventDescriptor] { var models = Model.shared.appoinmentProfessional for model in models{ // Create new EventView let event = Event() // Specify StartDate…
1
vote
1 answer

Issues with height/width properties after uninstalling CalendarKit

I recently removed the line pod 'CalendarKit', '~>0.5.0' from my podfile in an ios project. I then ran pod deintegrate and then reinstalled all the pods. However, Now, I'm getting a bunch of build errors of the form: Value of type 'UILabel' has no…
rma
  • 1,853
  • 1
  • 22
  • 42
1
vote
2 answers

CalendarKit Issue with the Date Scroll Bar - Swift

I've been having issues with using JT Apple Calendar to select a date to display in CalendarKit. The label will display the proper date, but the date selector above it, does not reflect the date that the label shows. Is there an easy way to fix…
user3628240
  • 877
  • 1
  • 23
  • 41
0
votes
0 answers

onPressBackground gives wrong date in @howljs/calendar-kit in react native?

I have implemented @howljs/calendar-kit in my project for showing daily/weekly appointments for the user. The issue I am facing that is I am not able to set the timeZone prop to the calendar as the library crashes. Issues The other issue is that…
Muhammad Ashfaq
  • 2,359
  • 5
  • 20
  • 46
0
votes
1 answer

Unable to create new event using CalendarKit when following online tutorial

Please note that I am attempting to add an appointment on an iPhone 13 Pro Max simulator, where I am not able to create a new event using XCode 13. I have been basing my code on this sample, https://github.com/richardtop/CalendarApp The issue is…
user8128167
  • 6,929
  • 6
  • 66
  • 79
0
votes
2 answers

Unable to install pod 'CalendarKit', '0.1.22' in Swift 3 and Xcode 8.3.3

The GitHub page for CalendarKit specifies that the setting for Swift 3 is: pod 'CalendarKit', '0.1.22' but that throws an error: [!] Unable to satisfy the following requirements: - CalendarKit (= 0.1.22) required by Podfile None of your spec…
user3908592
  • 43
  • 10
1 2
3