If you ship an iOS app with AI in it in 2026, the question is no longer "can we?" but "can we do it for a cost that lets us charge a fair price?" Here are the working economics from a studio that ships four AI-assisted apps.

The 2026 model lineup

The cheap-and-good frontier moves every quarter. As of this writing, the practical options are:

The right choice is not a single model. It is a routing layer that picks the cheapest model that meets the quality bar for each task.

A real cost calculation

For Antique Identifier, the per-photo cost in production breaks down approximately:

At our average of ~30 appraisals per active user per month, that is ~$0.42 per user per month in variable cost. At a $4.99 monthly subscription, the gross margin is healthy.

What is now cheap enough

What is still too expensive for indie pricing

If your app needs any of these, the math only works at a higher price point or a low usage cap.

Three rules we follow

  1. Always have a cheaper model in the routing layer. A GPT-4o-mini fallback for when the primary model is overkill. A small percentage of requests routed to the cheap model is real money saved.
  2. Cache aggressively. The user just photographed the same teacup three times. The second and third should not pay for a fresh model call.
  3. Cap usage with a soft limit and a paywall, not a hard error. Let the user understand what they hit and what unlocking gets them.

A note on Apple Intelligence

Apple's on-device Foundation Models are genuinely useful for a narrow band of tasks: summarisation, simple Q&A, structured generation. Free per-call cost. The trade-off is quality and the requirement of a recent device. We use them where they fit and route to a hosted model where they do not.

Building AI into an iOS app is no longer exotic. It is just engineering with a new cost variable. Watch the cost variable like you would any other line item, and the math works.