Hi,I'm using iPhone 6 iOS9. After I upgraded to iOS9, this problem started to occur.I always use the calendar app for my busy schedule, and the today's listview is very crucial.However, it seems I can't go further down the list.When I pull up the list so I can see the rest of the schedule and let my finger go, it springs back.I couldn't find any problem until iOS8.4.1.Do you guys know how to fix this problem? Or is this just iOS9 problem?
Search results for
calendar
1,863 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Submitted this back in January in Feedback Assistant but no response. After installing Ventura all of my existing Exchange Calendar events that were set to “Show as” Out to Office now show as busy. New events are also missing the option to choose OOO. iOS works fine. I tried removing the account and adding it back but others are experiencing the same per: https://discussions.apple.com/thread/254336452?login=true The option is not available in iCloud calendars in macOS but never was in past releases. If I set it to “Away” in Outlook.com which is the new denomination in Outlook it shows as busy on macOS Calendar. SS attached
Mail shows a function to add a contact. This mixed up on my end by adding my own email address to some address book entry, making then all my mails show up under the newly added contact's name. Had to remove from address book and restart mail.Adding a calendar invite is also kind of weird. It adds a link to the mail, not the attached ics file, to a random calendar.
Hi all, I'm writing an iOS app for the iPhone and iPad and it's basically done. I'm going through lots of regression testing and I'm sort of stuck on a scenario that I'm not sure of the most elegant way to handle it. My app uses a custom calendar, EKCalendar, for my users to do scheduling. When the user first launches the app, it prompts the user to enter a custom calendar name. I don't want them to default to the standard apple Calendar because it will mix appointments with my app when I display their appointments for this app. Should I force them to enter a custom calendar name or should I allow them to just default to the 'Calendar' for their scheduling? And then maybe down the road offer an update where they can change this custom calendar name as I am storing it using CoreData.
I'm developing a simple WebView app. Time text(HH:mm) in WebView is automatically linked. When I tap that link, the following menu is displayed. Create Event Create Reminder Show in Calendar Copy Event I want to remove this link. Is there any solution?
Follow these guidelines to update your app to use the new Calendar access levels. View Technote TN3152 >
Anyone else having an issue with iOS 14 calendar widget? When I select the widget, instead of going to today’s date/year, it goes to the correct day, but wrong year. It goes to 2019. Very annoying!!
So I'm running 9.3b1 on my 6S and the beta on the watch and there appears to be a calendar sync bug. My corporate account is in Office 365. My watch either shows no calendar items - not just for the day, but for the week. Depending on if I add other calendars in (like my Gmail or personal Outlook), I might get 1 entry for a day (I have like 10 things scheduled for today). Battery usage is horrible - the phone is hot in my pocket. I have the Apple battery case and both the case and the phone are drained by 3pm, and it's primarily calendar to watch syncing (https://dl.dropbox.com/u/853747/Jing/2016-01-20_0839.png)I've:1) reset watch sync data2) removed corporate O365 account and added back3) reinstalled watch and phone.4) adjusted calendar entries.Anyone have any other suggestions?
I have a watch app that is supposed to access the calendar and display information about the event and then count down until that event. But ever since the IOS 17.0.0 and watchOS 14.0.0, the old method of requesting access does not work (though it still works with the reminders). I tried to add a new authorization method that fits with the later version. static func requestAccess() { let eventStore = EKEventStore() let todayDate : Date = Date() let status = EKEventStore.authorizationStatus(for: .event) if status == .authorized { print(Access is already granted.) } else { print(status.rawValue) eventStore.requestFullAccessToEvents { success, error in if success && error == nil { print(Access has been granted.) } else { print(error ?? unknown error) print(Access request failed with error: (error?.localizedDescription ?? Unknown error)) } } } } NSCalendarsWriteOnlyAccessUsageDescriptionHowever, even though I have both the NSCalendarWriteOnlyAccessDescription, adn the older NSCalendarUsageDescrip
Hello! I'm trying to figure out how to get information about a user's busyness. My request to the outbox returns a 403 error, although any other request with the same access data is executed correctly. curl --location --request POST 'https://p48-caldav.icloud.com/userID/calendars/outbox/' --header 'Content-Type: text/calendar; charset=utf-8' --header 'Authorization: Basic xxxx' --data-raw 'BEGIN:VCALENDAR VERSION:2.0 METHOD:REQUEST BEGIN:VFREEBUSY UID:a4ee6514 DTSTAMP:20220113T165506Z DTSTART;VALUE=DATE:20220113T165506Z DTEND;VALUE=DATE:20220113T165506Z ORGANIZER;CN=OM:mailto:mymail@icloud.com ATTENDEE;CN=OM:mailto:mymail@icloud.com END:VFREEBUSY END:VCALENDAR ' I also tried the report free-busy-query request, it returns a 400 error, I took it from https://datatracker.ietf.org/doc/html/rfc4791#section-7.10.1. curl --location --request REPORT 'https://p48-caldav.icloud.com/userID/calendars/work/' --header 'Depth: 1' --header 'Content-Type: application/xml; charset=utf-8' --head
I am trying to create an app which would try to subscribe multiple calendars that are shared on iCloud with links such aswebcal://p23-calendars.icloud.com/published/2/oR3LtfcYCMGWOJunGttFBWy-dfg0MeVXoIsiqPcBhhs-cjullI1UMVoAzb8biyGC4TFdhzr4CBAhZ1PugqrjKQ_xvyQhQdSN84nejMV4nkU.As I did some research, I learned that it is possible to just open the URL and let iOS do the rest, like thisUIApplication.sharedApplication().openURL(NSURL(string: URL)!)However, after doing this the system shows several alerts asking to confirm subscription and whether to view the added calendar, which would be very not user-friendly when a lot of calendars are to be subscribed to.So is there a way to avoid all the alerts, perhaps by subscribing in code? If that's not an option, how can I add completion block to the alerts shown so that at least I can show the alerts one after another?I am truly grateful if anyone could help me.
I relied heavily on the previous calendar widget in the form of a rectangle that showed both the upcoming events on the left hand side and the full calendar on the right. This was convenient to both glance at your iPhone to see your upcoming events or knowing what weekday a specific date is. Now the rectangular calendar widget shows only upcoming events, you would need two widgets to achieve what one widget did. I believe this is a step back rather than an improvement. I'd much appreciate it if the old widget would make its way back to iOS 15. Thank you.
HelloI am getting an error when I try to remove a saved event from Apple's Calendar app. (I am successfully saving the event to Apple's Calendar, but I am not able to remove the same event.)In the custom class that subclasses NSObject :import EventKitinside the class’s init method :eventStore = EKEventStore()inside a function of this class :let event = eventStore.eventWithIdentifier(savedCalendarItemIdentifier) do { try eventStore.removeEvent(event, span: EKSpan.ThisEvent, commit: true) } catch { / }savedCalendarItemIdentifier is taken from the original event the first time that it was saved to the calendar.Here are the errors that I am getting.Error getting event with identifier 8BCD8F3D-73D8-4E07-BAXX-69E05025D4F2: Error Domain=EKCADErrorDomain Code=1010 (null)Error getting event with identifier 8BCD8F3D-73D8-4E07-BAXX-69E05025D4F2: Error Domain=EKCADErrorDomain Code=1010 (null)Any ideas would be greatly appreciated!
I've created an INLodgingReservation and donated the intent to Siri. The suggested event is visible in the Calendar inbox, but when I add the suggested event to my calendar it appears as an all-day event despite having the correct check in/check out times showing up in the Notes section of the Event. Can anyone point me to what I might be missing?
I created an app with a calendar and it shows correctly on the emulator but when I run it on the phone (iPhone X), it shows up wrong. The month of March 2019 starts on the correct day on the emulator but NOT on the phone. I am so confused.Here is the emulator photo.https://drive.google.com/open?id=17Y_m8V2NsX_bgEDpw-HL9BWKC0xkGoGbHere is the phone photo.https://drive.google.com/open?id=1eUpAx37OT97gqUu5AgTnT36s6HCF__Ih