RORK LABJP
BUILD — Rork Max runs real Macs in the cloud loaded with Xcode and the iOS SDK, writing SwiftUI, compiling, reading the errors and building again. That loop, not the code generation, is what lifts the outputNATIVE — What comes out is pure Swift and SwiftUI, not React Native. Reaching AR, Metal graphics and widgets that React Native cannot touch is the real gap between this and other buildersPLATFORMS — Coverage spans iPhone, iPad, Apple Watch, Apple TV and Vision Pro, plus iMessage. Worth a look if you want to start from a watch app or an extension rather than a phone screenCOMPANION — The Rork Companion app lets you check a generated build on a real iPhone without a paid Apple Developer account, lowering the bar for trying a first project end to endPRICING — Free to start, paid plans from $25 a month, and Rork Max on the $200 Max plan. Worth working out up front how many projects it takes to earn that backDEADLINE — From August 31, 2026, Google Play requires target API level 36 or higher for new apps and updates alike. Ten days out, and the targetSdkVersion of what you generate is yours to verifyBUILD — Rork Max runs real Macs in the cloud loaded with Xcode and the iOS SDK, writing SwiftUI, compiling, reading the errors and building again. That loop, not the code generation, is what lifts the outputNATIVE — What comes out is pure Swift and SwiftUI, not React Native. Reaching AR, Metal graphics and widgets that React Native cannot touch is the real gap between this and other buildersPLATFORMS — Coverage spans iPhone, iPad, Apple Watch, Apple TV and Vision Pro, plus iMessage. Worth a look if you want to start from a watch app or an extension rather than a phone screenCOMPANION — The Rork Companion app lets you check a generated build on a real iPhone without a paid Apple Developer account, lowering the bar for trying a first project end to endPRICING — Free to start, paid plans from $25 a month, and Rork Max on the $200 Max plan. Worth working out up front how many projects it takes to earn that backDEADLINE — From August 31, 2026, Google Play requires target API level 36 or higher for new apps and updates alike. Ten days out, and the targetSdkVersion of what you generate is yours to verify
Articles/App Dev
App Dev/2026-07-03Intermediate

Adding Events to the User's Calendar from a Rork Max App: EventKit's Three-Tier Permissions and Write-Only Access

Since iOS 17, EventKit offers three access tiers: a permission-free UI, write-only, and full access. Here is how to ship calendar and reminders integration in a Rork Max app without tanking your opt-in rate.

Rork Max233EventKitCalendar IntegrationiOS 172Permission DesignReminders

Premium Article

The Weight of One Sentence: "Access All Your Calendars"

While prototyping an "add this to your calendar" button for a habit-building feature, I got the code working in half a day — and then watched it die in testing. When I asked the few dozen TestFlight testers why they skipped the feature, nearly all of them pointed at the same thing: the full-access dialog that says the app wants access to all events on all calendars. For a feature that only ever writes one event, that sentence reads as wildly disproportionate. In my tally at the time, the grant rate was below fifty percent.

The fix came from rereading what iOS 17 did to EventKit. After switching to write-only access and moving one flow to the permission-free system UI, completion of the same feature in the same test group recovered to over eighty percent. As an indie developer I have learned that a single permission sheet can decide whether a feature lives or dies. This article walks through the three EventKit access tiers with a Rork Max–generated native Swift app: working code, the trade-offs, and the App Review angles.

One scoping note: this is not about building your own calendar screen inside the app. For that, see the beginner-friendly tutorial on building a calendar and schedule app with Rork. Here we integrate with the calendar and reminders the user already lives in.

iOS 17 Split EventKit into Three Tiers

Up to iOS 16, calendar access was all-or-nothing behind a single NSCalendarsUsageDescription. For apps built against the iOS 17 SDK, there are now three levels.

Access tierWhat you can doRequired Info.plist keyPermission dialog
No permission (EventKitUI)Add events through the system edit sheet; your app never touches calendar dataNoneNever shown
Write-onlySave events directly from code; reading existing events is impossibleNSCalendarsWriteOnlyAccessUsageDescriptionLight wording, explicitly "add events only"
Full accessRead, search, edit, and delete eventsNSCalendarsFullAccessUsageDescriptionHeavy wording about all events on all calendars

There is one trap worth flagging first. A binary built with the iOS 17 SDK ignores the legacy NSCalendarsUsageDescription when the new APIs request access, and the app crashes at runtime for a missing key. When I asked Rork Max to simply "add calendar integration," it occasionally generated the old key — presumably an artifact of training data — and I hit This app has crashed because it attempted to access privacy-sensitive data without a usage description in the simulator once myself. Always verify the generated Info.plist uses the new keys.

Reminders moved to NSRemindersFullAccessUsageDescription in the same release. But as we will see, reminders got no write-only tier, and that asymmetry ends up shaping the design.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
You can redesign a calendar feature that users were abandoning at the permission dialog into a flow that adds events with no permission at all
You will be able to pick the right EventKit access tier introduced in iOS 17 and avoid App Review rejections caused by weak purpose strings
You get working Swift code, from duplicate-event checks to reminder creation, that you can drop into your app today
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

App Dev2026-07-05
Rork Max (Swift) or the Standard Version (React Native): How to Decide as a Solo Developer
Stuck between Rork Max's native Swift and the standard React Native version? Here is a practical decision framework built from a solo developer's perspective, weighing cost, feature boundaries, and how easy each path is to migrate later.
App Dev2026-07-03
Making Your Rork Max App Resilient to Dropped and Restored Connections: Offline Detection and Retry with NWPathMonitor
Build networking that survives a lost signal in your Rork Max native Swift app with NWPathMonitor. Detect offline states, respect Low Data Mode and cellular, and auto-resend queued work on reconnect — all with working Swift code.
App Dev2026-07-03
Adding Read-Aloud to a Rork Max App: AVSpeechSynthesizer Voice Selection and Live Word Highlighting
An implementation memo on adding read-aloud to a native Swift app generated by Rork Max — covering AVSpeechSynthesizer voice selection, highlighting the word being spoken, audio session design, and the pitfalls that bite specifically with Japanese text.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →