Questions tagged [fscalendar]

A calendar control for iOS7+

FSCalendar is an iOS7+ calendar control.

It is compatible with both and .

171 questions
0
votes
1 answer

Unable to Import "fscalendar.h" in bridge file

My project is iOS Ver 11.0 and Xcode 9.4. My project already has a Bridging file and it contains one objective C framework. It works perfectly. But when I import "FSCalendar.h" in Bridge file. I got an error "FSCalendar.h file not found"
Vinod Radhakrishnan
  • 441
  • 1
  • 6
  • 18
0
votes
2 answers

Event table Using FSCalendar

I am using FSCalendar in my application to show calendar and events. So my question is can we achieve events table using FSCalendar or we have to do it by using separate tableview. Thanks in adv.
kalpa
  • 884
  • 1
  • 15
  • 22
0
votes
0 answers

Create calendar for event using FSCalendar library

I am using FSCalendar third party library.FSCalendar Please check linked library. I have attached reference of calendar in image. Question:- Create Screen in which past 5 months dates are displayed with maximum day as today and make every Wednesday…
Chandan Jee
  • 5,440
  • 4
  • 16
  • 24
0
votes
1 answer

How to show the events data in FSCalander according to particular date and days range?

Hi I have following response json: { "status" : "success", "data" : { "classes" : { "SUNDAY" : [ { "latitude" : 32.3844785674545, "uploads" : "https:\/\/xxxxx\/Uploads\/Class\/swimming.png", …
Fido
  • 218
  • 1
  • 17
0
votes
0 answers

Redefinition issue in frameworks when integrate in crossplatforms like kony

I am new to ObjC and I am using FSCalendar framework for multiple date selection. When I run this project in iOS , everything works fine but when I do this as an FFI for kony , I am getting too many errors like the following. Can anyone help me to…
Catherine
  • 654
  • 5
  • 15
0
votes
1 answer

FSCalendar is unable to detect

I am using FSCalendar. Installed its Pod. but its not working. In IB I am getting strange error which says storyboard: error: IB Designables: Failed to render and update auto layout status for CalendarViewController (RTc-Y3-fKa):…
Android teem
  • 780
  • 2
  • 13
  • 36
0
votes
2 answers

Selection color changes the events color in FSCalendar

I have a project using FSCalendar in swift 4. I have events as green and red color. But while selecting the particular dates , the color of events changes to selection color. How can I solve this issue as given in image below. The event dots on the…
Swift guy
  • 25
  • 2
  • 8
0
votes
1 answer

Display Events from API in FSCalendar

This is my response from api SUCCESS: { "5": { "count": 1, "topEvent": false }, "6": { "count": 1, "topEvent": false }, "7": { "count": 3, "topEvent": true }, "success": 1 } In this response i have events in day 5,6 & 7,…
Ketan Odedra
  • 1,215
  • 10
  • 35
0
votes
1 answer

How to display subtitle with multiple lines in FSCalendar

I integrated FSCalendar via pod and encountered subtitle is being trimmed when it is large. I want it to be aligned in multiple lines instead of trimming. To make it work as expected, if I do any modification in pod files it affects the update in…
Alex
  • 229
  • 3
  • 15
0
votes
2 answers

Allocate weekend day FSCalendar

I use FSCalendar. How i can allocate weekend day? For example in red color is weekend, other days except weekends is blue. I means to allocate not day of the week (like a sunday, saturday), namely day, i.e. date: Monday is 0 - blue color Tuesday is…
0
votes
1 answer

Close past dates in FSCalendar

I use FSCalendar and i'm trying to close past dates, but i or close the whole calendar for selecting dates or open all dates to select. How i can close only past dates from today's date? This should be done in this method: func calendar(_ calendar:…
0
votes
1 answer

How to Update Date In FsCaldener in Swift Ios?

How to update date in fscalender initially while launching an app. i am updating the date while scrolling fscalender but my doubt initially loading app how to send date to Post service Call? This is my api for getting dates from server. let now2 =…
siddu
  • 11
  • 3
0
votes
2 answers

Reduce the space between day text and subtitle in FSCalendar

How can I reduce the space between the day text and subtitle text in FSCalendar? Below image will give you the idea:
Rohitax Rajguru
  • 893
  • 2
  • 13
  • 35
0
votes
0 answers

FSCalender Weekend issue

I'm using FSCalender in my ios project. When i say _calendar.appearance.weekEndColor = [UIColor orangeColor]; It show Sundays & Saturdays in Orange color, I want to show only Sundays as weekend. Can anyone please help. TIA.
Neha
  • 11
  • 4
0
votes
0 answers

How to make and add two date between range in FSCalendar

I am working on FSCalendar for displaying events colors on it. Now, I want to display date range. { frmdt = "2017-10-10"; hlddesc = "Diwali Vacation"; hldid = 20; hldnm = "Diwali Vacation"; todt = "2017-10-31"; } this is one Array, I want to…