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.
Related
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
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];
Using UITableView, I can display a list of items using an array in rootViewTabel, how can I display another list in the nextView of the table?
My first view displays a list of months from jan - dec.
On selecting a particular month I want to display the list of festivals for that month in the same table.
What code should I include?
When the app launches use your root view controller to display the list of months. When the user taps on a particular cell, push another view controller which will in turn display the list of festivals for the selected month.
Following this way would be very easy to learn and implement.
Here are a few links that will help you learn and implement it easily.
Easy custom UITableView drawing
iPhone Programming Tutorial – Populating UITableView With An NSArray
So go ahead and code...
As with the settings page, I have a UI that displays a list of parameters, one of which is a date. When the user presses the row containing the date, a controller displaying a UIDatePicker is pushed.
What is the best way to update the table row with the selected value of the UIDatePicker when the user presses the back button to go back to the list of parameters.
How about: have the picker's controller tell the table view's controller about the update (assuming that they're not already the same object), and have that controller call reloadRowsAtIndexPaths:withRowAnimation: on the table view itself.
Or is your question, how do you get the controllers to talk to each other?