is there a way to transform calendarPicker from month view to week view, so calendar would show only one week, not full month, and with left/right arrow buttons we could navigate from one week to another.week view image
Related
in my calendar project i have a tapku calendar which displays monday on the very left. In America however, Sunday is usually on the left, so tapku has a method
- (id)initWithSunday:(BOOL)sundayFirst
so that can happen. However this method is used in the previous view controller, that controller initializes the tapkuViewController and then segues over. However, I start my project in the tapku view controller. So how do I set Sunday on the left?
Thanks
Hi everyone i am developping a tab bar application where one of the tabs is the Calendar from Kal library (http://github.com/klazuka/Kal).
I use CoreData as the DataSource for the Kal. It works perfectly but the table view below the Cal is never "refreshing".
I mean, the table view is initialized with the events between the first day in month, and the last day in month.
But, i want the table view the list of events "dynamically" changed.
Example:
I have created two events : one at january 4th, one at january 8th.
The tableview is always showing the two events and no take care of the day selected in month.
I mean, even if the day selected is January, 22nd, the two events are still displayed.
How can i load the calendar with all the events of the month and the tableview only with the events of the day ?
Thanks in advance,
Regards.
To reload the data that's been inserted:
[self.tableView reloadData];
Does everyone know, how to implement a Start & End view like in the iPhone Calendar App. I know it's a Grouped Table view with Custom cells at the top. But how do I implement the NSDatePicker at the bottom of the View. I've tried to implement the NSDatePicker with the Storyboard but there's always a small gap between the NSDatePicker and the bottom of the view.
It should look like this:
Edit: The solution for this issue is simple. I added two container vies, one as grouped table view and one as view controller with the NSDatePicker.
I used ActionSheetDatePicker of Tim Cinel (in github) and got a problem when use date picker, I can't interact with date picker control when test on device (only device!), I can still press "Done" button to dismiss the action sheet. Bellow is screen shoot of ActionSheetDatePicker:
Note: my app used navigation controller, maybe this is reason, but why :(
In my app, I require a calendar with day view and month view.
Now the problem is that all calendars available are either having only month view or they are having an additional view for list view.
So can you suggest some calendars where in only two views (month view and day view).
Tapku, Open source, it's on github. It has Day and Month, but not List view.