Skip to main content
Donovan’s Vision Blog

ARCtic iOS conference 2025 - Day 1

It's been a while since I posted, as I've been busy with web projects such as the new Classy.cards project. However this week I've been lucky enough to attend ARCtic Conference in Oulu, Finland.

There was a lot of great content and the conference has already proved inspiring after just the first day. It covered coding practices, working with large teams, comments, designing for intent, and handling content.

Here are some notes from the talks I've enjoyed so far.

Highlights #

Workshop: Level up your Swift and SwiftUI with Paul Hudson #

ARCtic Conference Workshop: Level Up

I attended Paul Hudson's half-day workshop at the ARCtic Conference, a hands-on session focused on refining existing Swift code. The format encouraged discussion and collaboration, with attendees suggesting and implementing improvements to a working project.

String Matching with localizedStandardContains #

One of the more useful discussions covered best practices for string matching in Swift. localizedStandardContains was recommended for case-insensitive, diacritic-insensitive, locale-aware searches. This method is particularly helpful for handling special characters from different languages, such as the German sharp S (ß). However, it can sometimes behave unpredictably with emoji and other special characters, so testing is essential.

Translation Tooling with Apple Intelligence #

We also covered Apple's built-in translation tooling and how it can streamline internationalization. While useful, it’s important to be aware of its limitations and verify translations for accuracy.

Best Practices for Clean Code #

The session reinforced several best practices for writing cleaner Swift code:

The workshop provided was an interesting and practical opportunity to refine best practices and pick up new techniques.

Day 1 #

The conference took place in the beautiful Teatteri Rio. The following is my notes from each of the talks.

Ben Scheirman: From independent to big company iOS #

Ben’s talk explored the transition from small teams to larger company environments, touching on the challenges and trade-offs at different stages of a developer’s career. It was centered around iOS but could easily apply to developers in other fields.

Small Companies and Independent Work #

Working in small teams offers speed, flexibility, and control over technology choices. However, it also means smaller projects, budgets, and overall impact.

For independent developers, the biggest challenges often go beyond coding—handling taxes, business management, and chasing down payments are part of the job. A useful rule of thumb: independent work should provide at least two of the following—great pay, great work, or great people. When setting up contracts, including a kill fee or buyout clause is a smart move.

While independence brings freedom, it also comes with limited involvement after project handoff and fewer long-term opportunities.

Large Companies and Scaling Up #

Larger companies function as a collection of interconnected teams, requiring strong alignment to stay on track. Finding the ‘north star’—a shared goal—is crucial to keeping teams moving in the same direction.

At scale, abstraction matters more than implementation. Good software design allows components to plug into existing platforms without micromanaging details.

Working Effectively in Teams #

Great teams produce great software. Key practices for fostering a strong team environment include:

Handling Scale and Stability #

Planning for high demand is essential. A simple yet effective first step is leveraging HTTP caching.

Crashes become significant at scale — a seemingly low 0.5% crash rate translates to thousands of failures across millions of sessions. Tracking and addressing crashes proactively is key.

Writing Reliable Code #

Alaina Kafkes: Long live the code comment #

Alaina Kafkes’ talk explored how to write effective code comments, addressing common pitfalls and best practices for clarity and maintainability.

Common Issues with Code Comments #

Poorly written comments can create more confusion than clarity. Some of the most common issues include:

The Role of Comments in Code #

Inspired by A Philosophy of Software Design by John Ousterhout, the talk emphasized that:

Types of Comments and Their Uses #

  1. Interface Comments (Most useful)

    • Placed above functions, explaining purpose and expected behavior.
    • Can be supplemented by well-named functions and clear APIs.
  2. Implementation Comments

    • Found within functions, clarifying non-obvious logic.
  3. Cross-Component Comments

    • Documentation such as READMEs to explain how different parts of a system interact.

Vidit Bhargava: Action centered design #

Vidit Bhargava’s talk explored how app design is evolving beyond single platforms, focusing on actions rather than standalone applications.

The Shift to Action-Centered Design #

Modern apps function across multiple contexts—phones, watches, desktops, and notifications. Instead of designing for a single platform, developers should think of apps as a way to enable actions that adapt to different environments.

The Action-Centered Approach #

  1. Action → Identify the core task the user wants to accomplish.
  2. Information → Determine the essential data required for that action.
  3. Interface → Surface the information through the simplest possible interface, from widgets to full-screen apps.

Implementation with App Intents #

Apple’s App Intents framework helps structure this approach by:

Action-centered design ensures that apps remain functional across different devices and contexts, making user interactions more seamless and efficient.

More insights can be found at Vidit Bhargava’s blog.

Ellen Shapiro: An AI Skeptic Implements Apple Intelligence #

mastodon.social/@designatednerd

Issues with AI and LLMs #

Large language models (LLMs) have fundamental flaws, including their inability to distinguish truth from fiction. This raises concerns about their reliability, as seen in real-world issues like an AI agent purchasing overpriced groceries due to poor judgment.

Some broader concerns with AI include:

Apple’s Approach to AI #

Apple aims to address some of these concerns by focusing on on-device computation, making AI features more efficient and private. Their ML platforms offer structured ways to integrate AI while maintaining a user-first approach.

Implementing Apple Intelligence #

Ellen provided examples of how Apple Intelligence can be integrated into apps. See the GitHub repository for sample implementations: Apple Intelligence Examples.

Notes: #

Summary #

Chris Price: When Content is King #

When building content-driven apps, structuring data efficiently is crucial:

Klemens Strasser: What Video Games Can Teach Us About Accessibility #

Key accessibility considerations inspired by video game design:

Resources:

That's all I have for day 1! I did miss a couple of talks as I was feeling quite run down by the afternoon. Hopefully I'll catch some more tomorrow. See you then!