Search results for

calendar

1,865 results found

Post

Replies

Boosts

Views

Activity

Reply to iOS16 Widget Lock Screen show sensitive information even if .privacySensitive() is set
Hello, Sorry for such a late reply... Attached image is Apple's calendar widget when iPhone is still in Lock state. (Swipe right) It shows everything. Every widgets (calendar, reminder, email) on my iphone show information even when the phone is still locked. This includes my app as well. So I guess the problem is not with my app. However, since you said your iphone works correctly maybe it is a problem with my phone then. Thank you.
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’22
Reply to Lock device, Restrict all apps | Screen Time API | iOS 16
Locking and unlocking the device is not possible via the Screen Time API. If you'd like to see that capability in a future release, please file a report via Feedback Assistant. You cannot restrict all apps on the device, but you can shield all app and websites by setting both store.shield.applicationCategories and store.shield.webDomainCategories to the .all() ActivityCategoryPolicy. You can also block all webContent by setting webContent.blockedByFilter to the .all() WebContentSettings.FilterPolicy. See the ShieldSettings and WebContentSettings documentation for more information. Yes you can create schedules via the Device Activity API. Here's a quick example on how to naively implement a schedule that shields all apps and websites for the weekend: In the App: extension DeviceActivityName { static let weekend = Self(weekend) } let weekendSchedule = DeviceActivitySchedule( intervalStart: DateComponents(calendar: calendar, hour: 0, minute: 0, weekday: 7), intervalEnd: DateComponents(calendar
Topic: App & System Services SubTopic: General Tags:
Oct ’22
iOS 16 Calendar Issue
I recently noticed that whenever I click on an event that I’ve created with invitees, then the RSVP responses shows that invitees have not yet responded and the invite sends out again to everyone… This is very frustrating and annoys a lot of people… Whenever I’d like to check the Times, Notes, Invitee Responses on an event, then everyone receives an invite again and needs to respond again! Anyone else experiencing this issue?
3
0
941
Oct ’22
Reply to Migrate from XML to App Store Connect API
Finally I found the solution to make the API work https://api.appstoreconnect.apple.com/v1/inAppPurchasePriceSchedules In some cases, the price calendar is empty even though there is an active price in IOS Application, API call of https://api.appstoreconnect.apple.com/v1/inAppPurchasePriceSchedules/:inappid/manualPrices?include=inAppPurchasePricePoint&filter[territory]=FRA is empty too (no Customer Price / Price Tiers) After creating a rate in the calendar, API Response is not empty... So we had to check all the prices one by one and for the empty ones, send back the right price with API and it's works !
Oct ’22
Reply to Since ios 16 Calendar App is getting google shared calendar notifications non stop
The calendar notifications on iOS 16 are incredibly annoying. When you dismiss them, they pop back up on EVERY device seconds later. For people with multiple shared calendars for team management, this has been the absolute worst. It's the first time I've regretted having all of my devices in the apple ecosystem. Please resolve AS SOON AS POSSIBLE!!!
Topic: App & System Services SubTopic: General Tags:
Oct ’22
Reply to Why Doesn't Date have a way to get the timezone?
The way I think of it is that Date doesn't have a time zone - it is a universal representation of a particular moment in time, independent of time zones. When you want to expose a date to a user, you use something else to describe the moment in time in a way that suits the context in which you're trying to expose it e.g. a Calendar in order to create DateComponents, or a DateFormatter in order to create a string representation of that time. A good general way of putting it from w3.org: Date and time values based on incremental time are time-zone-independent, since at any given moment it is the same time in UTC everywhere: the values can be transformed for display for any particular time zone offset, but the value itself is not tied to a specific location.
Topic: Programming Languages SubTopic: Swift Tags:
Oct ’22