Questions tagged [fscalendar]

A calendar control for iOS7+

FSCalendar is an iOS7+ calendar control.

It is compatible with both and .

171 questions
1
vote
0 answers

Block ios app internationalization

I am facing a problem with the internationalization of my app. The calendar that I m using in my app (FSCalendar) is returning me values in Greek. My localizations are turned off and my storyboard is set to Base. I want my app to be strictly in…
0
votes
0 answers

How to create calendar like iOS Fitness App with FSCalendar

I'm a new programer and I am trying to use FSCalendar to create a calendar like iOS Fitness App. Like this: but I don't know how to. Now I try to .scope = .week. In cell I use self.titleLabel.isHidden = true to hide date. import UIKit import…
Cheeeng
  • 1
  • 1
0
votes
0 answers

Why FSCalendar sets different current page than manually set for week scope mode?

I use the following library to display calendar in my UIView: https://github.com/WenchaoD/FSCalendar This is how I define it in code: let date = Date() print("DATE: \(date)") print("SCOPE:…
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
0
votes
0 answers

FSCalendar RangeSelection With CALayer - Swift

The question is all about not one thing it has the lots of query's I need the layer of middle selected dates looks like something connected to the first and last date reference image i've attached The date which i've printed while…
0
votes
0 answers

FSCalendar range selection - Swift

Now i have the code working properly for the range selection but for the range selection i need only the start and end dates were highlighted with background colour , in between dates should be shaded something like layer , so i need to use the…
0
votes
0 answers

Align the UILabel inside FSCalendar

After added below code its display list of UILabel below FSCalendar dates. But the label overlap dates inside calendar. How to align weekly / Monthly FSCalendar Label below dates? func calendar(_ calendar: FSCalendar, willDisplay cell:…
kiran
  • 4,285
  • 7
  • 53
  • 98
0
votes
1 answer

disable previous dates - fscalender swift iOS

I'm using fscalender in my project. I have to choose start date and end date,in which when user selected start date the end date calendar view should disable the previous dates of selected date.How can I achieve this. ` var satrtDte:Date? `func…
0
votes
1 answer

How to give animation when I click button which toggle scope in Fscalendar with snapkit in iOS

I currently, I'd like to change FSCalendar's scope with animation using Snapkit. The code below can replace scope with week and month. But the animation doesn't work. func calendar(_ calendar: FSCalendar, boundingRectWillChange bounds: CGRect,…
bch7213
  • 1
  • 1
0
votes
0 answers

FSCalendar searchbar disappears

I'm using FSCalendar in my app. I placed the searchbar, which works properly with tableview below the FSCalendar. I select any row in the table and go to the next viewcontroller to edit selected row. As soon as I returned to the main VC (with…
OleksandrS
  • 11
  • 2
0
votes
1 answer

why cant it detect FSCalendar in Swift

first of all, im a very newbie to Swift language, I believe, FSCalendar is properly downloaded under my project, but when trying to use the class, it doesn't detect on custom class. First, I created podfile and add pod 'FSCalendar' on it, and did…
W 3
  • 19
  • 2
0
votes
1 answer

FSCalendar+Persian: How to change weekday order?

I'm using Objective-c in my project, and using FSCalendar+Persian pod. this is my code for showing calendar: calendar = [[FSCalendar alloc] initWithFrame:CGRectMake(0, 0, _calendarContainer.frame.size.width,…
behrad
  • 596
  • 1
  • 5
  • 19
0
votes
1 answer

FSCalendar particular month and date showing in weekView - Swift

I have two ViewControllers A & B Both VC have calendarView (week View).B VC I selected particular date in month of August When I back to A VC that particular date is selected but in UI its shows today date and current week while swiping only I can…
Gowtham S
  • 37
  • 7
0
votes
1 answer

Past dates and futures dates in custom cell FSCalendar

image Can anyone help me, I use custom cell for selected dates to display icon and image etc. But past dates and futures dates label colors (when selected) are changing from gray to white , I want those dates still gray but in selected cell (custom…
satriani
  • 11
  • 2
0
votes
1 answer

FSCalendar with Week scope has unintended footer-like view

I have issue while using FSCalendar I created FSCalendar with .week Scope and there's unintended space at bottom of calendar.: If I try to reduce calendar's height, its font size is also reducing and calendar looks squished.: class ViewController:…
Dan Choi
  • 83
  • 2
  • 8
0
votes
1 answer

FSCalendarScopeWeek issue- swift

I'm using fscalender on my project which I have to use both month scope and week scope on different view controller.so when I'm using week scope date title size is getting smaller, but when I increase the view height its getting perfect.but my view…