Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
710
Monotouch - NUCLIOS Calendar example
posted

Hi there,

I'm trying to get the calendar control working, but without success :( so it's possible to have an example?

I just need to have a calendar control with:

- Week View

- The week view is populate with de items/events that exists in the calendar of the IOS device

- In the week view, when the user tap the event it show the event with: Title, Localisation, Date Begin, Date end, alarm, notes, etc..

- Finaly need to add more events to the calendar

It's importante to have exemples, because this is a new control...

thanks

Parents
  • 4940
    Offline posted

    Hi Rui,

    The calendar views we support are year, month and day (documentation). For what you're trying to do the day view is the best option. You can set the calendar to this view by using the following code. If you want to disable users from going back to month or year view, then use the disableBackButton property found on the IGCalendarView instance.

    calendar.Navigate (NSDate.Now, IGCalendarViewDisplayType.IGCalendarViewDisplayTypeDay);

    To get information about the appointment tapped create a class that adopts the IGCalendarViewDelegate and override the AppointmentTapped event. You can use this event to get and display information to the user about the appointment tapped. One of the parameters passed to this event is the IGCalendarAppointment, this contains all the information you need. Finally, don't forget to set the Delegate property on the IGCalendarView to the new class instance adopting IGCalendarViewDelegate you created.

    Attached are two different examples written in Xamarin.iOS that use the IGCalendarView. The calendar data source helper example loads appointments from the current device and the calendar async appointment example demonstrates the creation and loading of appointments. Please remember to remove and re-add the IG assembly reference.

    Developer's guide documentation for the IGCalendarView can be found at this URL: http://help.infragistics.com/iOS/2013.2/?page=IGCalendarView.html

    CalendarExamples_CS.zip
Reply Children