Search results for

calendar

1,863 results found

Post

Replies

Boosts

Views

Activity

quit apps, launch apps from Calendar
trying to quit 2 apps and launch a 3rd. 3 individual Automator apps work by themselves fine. But can't get them to open an app from Calendar at a specified time. Tried building an Apple Script. Same issue. Here's the Automator app. ** tell application Jellyfin Media Player to quit delay 1 tell application Jellyfin server 10.10.1 to quit delay 1 tell application EmbyServer 4.8.10 to activate** any help on what I'm doing wrong? seems simple enough. Both Automator and Script Ed have full disk access and Accessibility
0
0
520
Nov ’24
Reply to EKEventStore on Apple Watch not showing all calendars
I am having the same problem. It seems that sometimes can't get iCloud stuff in the EKEventStore calendars. In the case of my app, the tricky part is that it is only happening for a very few users and cannot be reproduced by the majority of other users or in my environment. I am looking for any information you can give me. Thank you very much in advance.
Topic: App & System Services SubTopic: General Tags:
Nov ’24
Reply to How to give an iOS App running in Mac(designed for iPad) mode access to the Mac Calendars ?
Can you call self.authorizationStatus = EKEventStore.authorizationStatus(for: .event) before if try await eventStore.requestFullAccessToEvents() { to determine your app's authorization status? If the status is .notDetermined, then your app should call try await eventStore.requestFullAccessToEvents() . Additionally, to access Calendar data, all sandboxed macOS apps must include the com.apple.security.personal-information.calendars entitlement. To reset calendar access for your macOS app between launches, run the following command in Terminal: tccutil reset Calendar
Topic: App & System Services SubTopic: General Tags:
Nov ’24
Reply to Calendar integers in english and alphabets in arabic
I’d like to clarify your requirements. Are you trying to do this with a built-in calendar view, like UICalendarView? Or is this a custom calendar view, where you have control over the drawing? Also: I’m presuming this is iOS. Let me know if that’s not the case. What UI framework are you using? UIKit? SwiftUI? Something else? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: UI Frameworks SubTopic: UIKit Tags:
Nov ’24
Calendar integers in english and alphabets in arabic
we are migrating our app to support Arabic language support but the requirement is we want the calendar/date object to display as missed. That is all the numbers in english digits and rest all the words like days, months should be in Arabic. I tried few options but at the end its resulting everything is in Arabic or in English but not the mixed as expected. Attaching the expected behavior.
3
0
498
Nov ’24
MacOS SwiftUI: Back button in NavigationSplitView detail view
I have a Split View with the sidebar, content, and detail. Everything is working, but when I select on a NavigationLink in my detail view, the back button is seen next to the title above the content view. I want that back button to be displayed in the top bar on the left side of the detail view. I was expecting it to do this automatically, but I must be missing something. This is where I want it to appear. This is where it appears. I made a simplified version of my code, because it would be too much to post but this has the same behavior. struct TestView: View { enum SidebarSelections { case cycles } @State private var sidebarSelection: SidebarSelections = .cycles var body: some View { NavigationSplitView(sidebar: { List(selection: $sidebarSelection, content: { Label(Cycles, systemImage: calendar) .tag(SidebarSelections.cycles) }) }, content: { switch sidebarSelection { case .cycles: NavigationStack { List { // Displayed in Content NavigationLink(Cycle link, destination: { // Displayed in the Detail
3
0
1k
Nov ’24
Is there a way to opt a Catalyst app into supporting preferred text size?
As of macOS Sequoia 15.1 (and probably earlier), in System Settings under Accessibility -> Display, there's a Text Size option that looks an awful lot like Dynamic Type on iOS: I have an iOS app with robust support for Dynamic Type that I've brought to the Mac via Catalyst. Is there any way for me to opt this app into supporting this setting, maybe with some Info.plist key? Calendar's Info.plist has a CTIgnoreUserFonts value set to true, but the Info.plist for Notes has no such value.
0
0
574
Oct ’24
How can I make my multi-window Catalyst app restore window size and position after closing with stoplight button?
I have a Catalyst app that supports multiple scenes / windows. It has one main window type and lots of other secondary windows that can be opened. I'm using the system window restoration functionality via NSQuitAlwaysKeepsWindows to restore windows with their user activity data after the app is quit and restarted. Normally, this works great. If I open my app, change the size and position of my window, quit, and reopen it, the window size and position comes back as expected. But if I close the window using the red stoplight button and then click the app icon to bring it back, it comes back at the default position and size. This isn't how other system apps work - if I close the system Calendar app with the stoplight button, it comes back at the same size and position. How do I get this behavior with my Catalyst app? Is there some identifier property I need to set somewhere? I don't see such a property on UISceneConfiguration. If it matters, I'm using the configurationForConnectingSceneSession method to
1
0
555
Oct ’24
Reply to UIHostingConfiguration + MainActor.assumeIsolated?
There are a number of different approaches but this is a perfectly reasonable one. It assumes that the calendar view calls its delegate on the main thread / queue / actor, which is a reasonable assumption for a view class in the absence of any documentation to the contrary. Feel free to file a bug against the calendar view requesting that it delegate be decorated so that the Swift compiler understands this. And please post your bug number, just for the record. Migrating to Swift 6 is chock-full of useful info in this space. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’24
Reply to Pending Termination Notice
Below is the message: Pending Termination Notice Upon further review of the activity associated with your Apple Developer Program membership, it's been determined that your membership, or a membership associated with your account, has been used for dishonest or fraudulent activity, in violation of the Apple Developer Program License Agreement. Given the severity of the identified issues, all apps associated with your Apple Developer Program account have been removed from the App Store and your account has been flagged for removal. Because your account has been flagged for removal, any earnings payments are paused and app transfers are disabled. Creating new accounts after receiving this message may result in the termination of the new or associated accounts. Evidence of Dishonest or Fraudulent Activity App submissions from your account have engaged in concept or feature switch schemes to evade the review process, such as dynamically populating different app content after review, submitting apps with hidden fe
Oct ’24
Changing the theme of macOS app?
Hello. I'm developing a program for macOS. It's so difficult because it hasn't been long since I developed it. I have a question while looking at the memo app or calendar app. The calendar comes in red when selected (context menu is also red) and the memo app comes in yellow when selected and I was wondering if I could implement that function with swiftUI.
Topic: UI Frameworks SubTopic: SwiftUI
1
0
314
Oct ’24
EventKit refreshSourcesIfNecessary() not triggering real-time sync with Google Calendar events
I'm working on an app that uses EventKit to access calendar events. For users with external calendars like Google Calendar, they can sync these by adding the account through iOS Calendar settings. Once added, the events appear in my app as expected. However, if a user adds a new event in Google Calendar, there’s often a delay before it appears in my app, since the iOS Calendar doesn't sync with external sources like Google in real time. Currently, users can manually trigger a sync by opening the Apple Calendar app and using the pull-to-refresh feature under the Calendars tab. This works reliably but isn’t an ideal solution. I tried using the EventKit method refreshSourcesIfNecessary() to minimize the delay, as it claims to [Pull] new data from remote sources, if necessary (link to docs). I trigger this method when the app returns to the foreground. But, I'm not seeing the expected results. Here’s a typical sequence: Open my app and send i
1
0
417
Oct ’24
WHY??? ios 18
Why must you make changes just for the sake of changing? We have a saying here - that came directly from when you changed the (then) iPhoto software so that we could no longer use the super-convenient feature of being able to print as many copies of a photo on a page - N'up with dat? This is when Apple just changes things that users love - for no apparent reason. ios 18: rearranging all the albums in Photos - WHY? ios 18: removing heavily used views in Calendar - WHY? ios 18: Spanglish? WHY? ios 18: nearly impossible to stop an alarm - WHY? Please keep the security and other updates happening - but stop f'ing with the things that users use and love...without any reason whatsoever! N'up with dat???
1
0
441
Oct ’24