Search results for

calendar

1,868 results found

Post

Replies

Boosts

Views

Activity

ios14 calendar widget does not show events from Exchange Online calendar
Hi, I have my Exchange Online calendar synced with my iPhone (most of my business appointments are saved in Outlook calendar). They show up well in the calendar app, I do get notifications and reminders (also on my apple watch) but when I use the new calendar widget in ios14 i see no more events today message. But when I go inside the app (expand the widget, everything is there). I have the widget set to mirror my calendar app (all calendars). I tried different settings but no events show up in the widget. This has not been solved by updating to ios14 beta 2.
18
0
17k
Sep ’22
Reply to LaunchAgent priority
Boot sequence with user applications starting before Launch daemons and even system extensions clearly represents a potential security risk. It is very clearly visible when using FileVault. In this case user needs to enter password, OS decrypts volume and then it can startup and launch processes, but very quickly opens user's Desktop and starts to open applications. The bigest problem is that for example Endpoint system extension, which defends computer from infections or Network system extension, which scans network traffic and defends against infected web pages, email, etc. cannot immediately block harmful content. PIDs of these processes are larger than for example Launch Daemons. It means that for example Mail could open very quickly and load new message before Network System extension is loaded and traffic captured and scanned. We see it especaily on new OS versions running on ARM where it can take up to 10-30 seconds to properly load everything to protect users. That happens when OS is setup with FileVa
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’22
Widget is not auto refreshing
Widget needs to be auto refreshed at 6AM & 6PM every day. I have added the following logic/code based on the widget adding time. But I could not see the widget is auto refreshing at 6AM & 6PM let calendar = Calendar.current let TimeComponentfor6AM = DateComponents(calendar: calendar, hour:6) let TimeComponentfor6PM = DateComponents(calendar: calendar, hour: 18, minute: 00) let now = Date() let startOfToday = calendar.startOfDay(for: now) let startTime = calendar.date(byAdding: TimeComponentfor6AM, to: startOfToday)! let endTime = calendar.date(byAdding: TimeComponentfor6PM, to: startOfToday)! if now < startTime {//if widget adds before 6AM if let At6AM = Calendar.current.date(bySettingHour: 6, minute: 0, second: 0, of: Date()) { let refreshEntryFor6AM = RecommendedWidgetEntry(date: At6AM, recommedationData: recFeedModel) refreshEntries.append(refreshEntryFor6AM) } if let At6PM = Calendar.current.date(bySettingHour: 18, minute: 0, second: 0, of: Date()) {
3
0
631
Sep ’22
EventKit in SwiftUI
I am new to Swift and I would like to make an app including complex calendar events. I have done some research this morning and I'm having trouble finding any documentation or tutorials on implementing EventKit in SwiftUI, everyone is using storyboard but I don't know how to use that. Is EventKit supported in swiftUI or do I have to start learning story board?
1
0
1.4k
Sep ’22
AccessoryCorner widgets with similar layout as the system calendar complication
When the system calendar complication is shown in the corner, it has the title of the upcoming event as the widget label and the time of the event as the main widget view. However the time of the event is not small and clipped to a circle like WidgetKit renders the complication but larger and curved together with the label. Is there a way to achieve the system corner complication layout with the WidgetKit complications?
1
0
1.1k
Sep ’22
Reply to Assign a category name to the Find intent generated by EntityPropertyQuery
Same question here, I too would like to be able to group the automatically generated Find note intent from the EntityPropertyQuery with the other actions assigned to the Notes category through the intent descriptions. Related, I also noticed that the Notes app and Calendar app use the plural form, i.e. Find notes instead of Find note. Is there a way to achieve this?
Topic: App & System Services SubTopic: General Tags:
Sep ’22
UICollectionView reload() issue with Focus state got out of sync in tvOS 15.4 and above
In my application I have a ViewController, In that view controller I have two CollectionViews - CollectionViewA and CollectionViewB in vertically format. And basically I have a design like calendar. In CollectionViewA - Displays the informations like, S.No, Image and favourite/unfavourite options. In CollectionViewB - Displays the program informations. So when I click the favourite option I'm reloading the collectionviews so that the collection view will get reload and update the informations in UI for favourite/unfavourite icon appearance. So this is how the functionality works. Now what happens is, this functionality works properly till tvOS 15.2. When we do the same functionality in 15.3 and above, there is an CollectionView scroll issue (i.e) when I click favourite for the item in row number 10 then after collectionview.reload() it automatically moves to the position from 10 to 5 or 3. This automatic scroll issue is happening with the below error which is noted in log console. Collection view foc
6
0
1.7k
Jun ’22
NSCalendar firstWeekday returns wrong based on NSLocale region
Hi, I'm trying to implement a dynamic calendar where the first day of the week will be based on the locale, unfortunately, it seems NSLocale doesn't conform with the regions in the world, only works for US, for example: NSCalendar *calendar = [NSCalendar currentCalendar]; NSLocale *locale = [NSLocale localeWithLocaleIdentifier:@pt_BR]; [calendar setLocale:locale]; NSLog(@firstDayOfWeek: %@, [calendar firstWeekday]); // Returns 2, which is Monday but in Brazil the first day of week is Sunday, it should return 1 NSCalendar *calendar = [NSCalendar currentCalendar]; NSLocale *locale = [NSLocale localeWithLocaleIdentifier:@en_US]; [calendar setLocale:locale]; NSLog(@firstDayOfWeek: %@, [calendar firstWeekday]); // Returns 1, which is correct for United States Does anybody know which standard the NSLocale follows to return on the first day of the week?
6
0
1.2k
Aug ’22
Reply to UIDatePickerView compact not highlighting selection.
It seems that compact mode has some specific behaviour. For instance, it does not hide automatically the calendar after selection (need to tap outside). https://stackoverflow.com/questions/67109078/close-uidatepicker-after-selection-when-style-is-compact However, I tested in Xcode 14ß5, Swift, with a compact mode datePicker, selection appears correctly highlighted:
Topic: UI Frameworks SubTopic: UIKit Tags:
Aug ’22
Reply to How to use iapPriceSchedule?
This API is VERY confusing, but it's not entirely broken. First, you might want to review this WWDC video from 2020, which explains how app prices work. https://developer.apple.com/videos/play/wwdc2020/10004/ Note that a price point is a mapping from price tiers (there are 95 of those) to territories (175 of those), and defines the localized price for that tier in that territory. Thus there are 95 x 175 = 16,625 price points as I write this comment. Unfortunately, the IAP price API works very differently from the API for full-app prices documented at WWDC 2020. 😖 The big difference is that the /v1/apps/:appId/prices endpoint allows you to ?include=priceTier to see the tier of the price. IAP prices don't do that; inAppPurchasePriceSchedules links directly to inAppPurchasePrices, each of which only includes a start date and a relationship to its price point. Therefore, you're gonna see 175 inAppPurchasePrices for each entry in the price schedule! Worse, the API doesn't actually show the territory for a price p
Topic: App & System Services SubTopic: StoreKit Tags:
Jul ’22
6 year old Apple Enteprise Account in review for 4 weeks and counting, critical apps down for weeks.
We have been waiting for 4 weeks to have our enterprise account reviewed for renewal. We have received no response. Calling Apple, they tell us that neither us nor they can contact the team that approves the renewal. This account renewal process is, and always has been, renewing it, agreeing to a license agreement, and putting in a card number to pay for it. I had a calendar reminder to renew the provisioning profiles for 2 very widely used apps within our org. This reminder was set a week prior to needing them updated. Since renewing a profile is usually a very quick thing, this has always been more than sufficient. Since Apple has decided to change whatever processes, we have now been down 2 business critical apps for about 3 weeks now. There are threads about this issue going back months. What in the world is going on? How can Apple expect enterprise, businesses, to go weeks or months without being able to renew and therefor continue use of internal business applications using their platforms?
2
0
835
Aug ’22
Reply to No notification sounds in ios15 beta?
Same issue since upgrading to 15.6 — before no issues! now only sound heard when phone is locked is for calls, all other notifications (regardless of app) work but with no sound. We are talking calendar, reminder, iMessages, WhatsApp, etc…. ALL same issues on 2 different iPhones with different Apple ID: only common factor is the update to iOS 15.6 yesterday. I tried all the above recommended settings checks and nothing. REALLY disappointed by the 15.6 update. Regretting big time to have upgraded :((
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’22