Search results for

calendar

1,864 results found

Post

Replies

Boosts

Views

Activity

Has the <input type = "date"> display of iPadOS 14.5 changed in Japanese?
After updating iPadOS14.5, the input type = date tag of the html file is now displayed as Apr 27. 2021 in the iOS app. Until now, it was displayed as 2021/04/27. The date input calendar displayed when tapping the input area is still displayed in Japanese. How can I display in the format of 2021/04/27 on iPadOS 14.5? I also searched for formatting options, but couldn't find them.
3
0
1.9k
Apr ’23
API to sync calendar?
I can see that it is fairly simple to implement Sign in with Apple https://developer.apple.com/sign-in-with-apple/get-started/ However, we want the users to also be able to manage calendar from the web app. I found EventKit but that is if I am making an App on iOS, not really on a custom web app. Can you please help me with the link for api for events push and pull on Apple calendar? Thanks
3
0
3.3k
Mar ’23
Reply to CloudKeychainProxy problems
I have a mac mini home server that has been crashing every approx. 15 days for over a year now. Its a 2012 mini running Catalina. It does what I call a half crash where many services fail, though I can still make http requests sometimes and I can still SSH in. But no way to see what's going on or sniff out the problem. Then through random chance, I was connected to the mini through screen sharing and turns out it was hours or less before it was going to crash. Memory pressure was super high, yellow with blips into the red. And it was from CloudKeychainProxy! It was clearly leaking and it's memory use was going up and up and up. Slowly, but steadily. SO after about 15 days, my 16 GB system would run out and not fully lock up but functionally lock up. My first clue in i don't even know how long. It's been going on so long, I actually have been logging these crashes on a calendar to see if I could infer any clues that way! I don't know what you mean by reset [the] keychain but what ended up working for
Topic: App & System Services SubTopic: Core OS Tags:
Mar ’23
Reply to Is it possible to launch my app from a calendar event?
You can create a URL and save it into a calendar event, and the user can tap it to go to your app, but there's no way of making the app open when a specific event time happens. For privacy reasons, the user must invoke your app themselves. Imagine the horrors if a nefarious app added multiple events to your calendar, and their app opened every few minutes.
Topic: App & System Services SubTopic: General Tags:
Mar ’23
Opening an ics on iOS with an ATTENDEES property doesn't show any attendees
I am trying to create a simple online calendar where a user can create an event and schedule it on my calendar themselves. One of the options is to generate an .ics iCalendar file, which has me as an attendee. This works on macOS, but on iOS an Attendees line appears with 0 attendees (see screenshots below). I have tried all sorts of changes to the ATTENDEE property to no avail. Am I doing something wrong, or is this a limitation or bug on iOS? Tested on iOS 16. Here's the .ics contents: BEGIN:VCALENDAR PRODID:-//Wes.dev//WesCal//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VTIMEZONE TZID:America/New_York BEGIN:DAYLIGHT DTSTART:20070311T020000 RRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3 TZNAME:EDT TZOFFSETFROM:-0500 TZOFFSETTO:-0400 END:DAYLIGHT BEGIN:STANDARD DTSTART:20071104T020000 RRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11 TZNAME:EST TZOFFSETFROM:-0400 TZOFFSETTO:-0500 END:STANDARD END:VTIMEZONE BEGIN:VEVENT LAST-MODIFIED:20230322T095917 DTSTART;TZID=America/New_York:20230322T150000 DTEND
1
0
1k
Mar ’23
lazy protocol witness table accessor for type [Calendar.Identifier] and conformance
hi i build calendar app and i store some user setting as generic type the app work fine on ios16 but on ios15 i have crash when store array of Calendar.Identifier. error: lazy protocol witness table accessor for type [Calendar.Identifier] and conformance 0x104967428 <+48>: bl 0x1049655ec ; lazy protocol witness table accessor for type Foundation.Calendar.Identifier and conformance Foundation.Calendar.Identifier : Swift.Decodable in Foundation at
1
0
1.3k
Mar ’23
Reply to tccutil: Failed to reset microphone
I adapted the magic command referenced by: https://recoursive.com/2020/03/03/reset_macos_privacy_permissions/ on Monterey generate the list below. Hope this helps... strings /System/Library/PrivateFrameworks/TCC.framework/Versions/A/Resources/tccd | fgrep kTCCService | fgrep -v ' ' | sed -e s/kTCCService// | sort Accessibility AddressBook All AlwaysAllowedService.AppleEvents AppleEvents BluetoothAlways BluetoothPeripheral BluetoothWhileInUse Calendar Calls Camera ContactsFull ContactsLimited DeveloperTool ExposureNotification ExposureNotificationRegion FaceID Facebook FallDetection FileProviderDomain FileProviderPresence FocusStatus GameCenterFriends KeyboardNetwork LinkedIn ListenEvent Liverpool MSO MediaLibrary Microphone Motion NearbyInteraction Photos PhotosAdd PostEvent Prototype3Rights Prototype4Rights Reminders ScreenCapture SensorKitAmbientLightSensor SensorKitBedSensing SensorKitBedSensingWriting SensorKitDeviceUsage SensorKitElevation SensorKitFacialMetrics SensorKitForegroundAppCategory Se
Topic: Privacy & Security SubTopic: General Tags:
Mar ’23
How can I do some trivial AppleScript from a Swift app?
I've got a Swift app that looks at a timeline of occurences. I'd like to be able pop up the Calendar.app, focused on the date a user has selected within the app.Nothing fancy -- no data comes back from Calendar...Using ScriptingBridge, I could imagine just running [on the CalendarApplication that is returned from let calendarApp = SBApplication(url: url)]the method:- (void) viewCalendarAtDate:(NSDate *)at;or perhaps passing a string to the following script:on showDateInCalendar(s as string) tell application Calendar view calendar at date s end tellend showDateInCalendarThere seem to be lebenty different ways to approach this problem, but they all seem documented in the style of you-have-to-have-understood-this-once-before-you-can-understand-it-again.Any suggestions, or am I doomed to the command line and Python scripts?Richard
7
0
8.9k
Feb ’23
Reply to Can I call setAlternateIconName without user consent?
It’s amusing that this guideline: This feature may not be used for dynamic, automatic, or serial changes, such as to reflect up-to-date weather information, calendar notifications, etc. ...basically tells you not to do something that the API doesn’t support anyway. It’s good to be thorough. But be mindful of this part: and the app includes settings to revert to the original icon. So just changing the icon in response to navigation actions within the app may not satisfy the guideline. Since we’re down to trying to parse the exact meaning of the review guidelines, I think you should just submit your app and see how it goes.
Topic: UI Frameworks SubTopic: UIKit Tags:
Jan ’23
Reply to Can I call setAlternateIconName without user consent?
Is it possible to call a specific screen What does this mean? It doesn’t seem to correspond to the title of your post. without user consent That’s usually a red flag here in Apple-land. What exactly are you trying to accomplish? Note that setAlternateIconName always presents an alert after the change, so you can’t quietly change the icon without the user noticing. And while there doesn’t seem to be any specific discussion of this in the HIG or API documentation, the intent of this API is pretty clear: to let the user pick an app icon they like, such as a sports team logo or a more pleasing color scheme. It doesn’t support using the icon to display useful information like the built-in calendar and clock apps do.
Topic: UI Frameworks SubTopic: UIKit Tags:
Jan ’23