Skip to content

bart-kneepkens/Good-iOS-App-Checklist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 

Repository files navigation

Good iOS App Checklist

An opinionated list of features that every good iOS app should have (apps to be published in the App Store, that is). This list is not meant to be exhaustive. It is merely meant as a reminder of features that are easily overlooked by product teams and engineers alike.

1. Localized for release regions

  • All user-facing text should be translated in the primary locales of the regions you intend to release to
  • All text should work in a locale's default layout direction, also supporting right-to-left layouts
  • If the app has clocks, they should respect the user's region's default clock format (12h or 24h clocks)
  • If the app has a calendar, they should respect the user's iOS preferred calendar type (Gregorian, Japanese, Buddhist)

2. Accessibility

  • Support dark mode and high-contrast mode
  • User-facing text should use dynamic font sizing. See this thread
  • User-facing text should have proper accessibility labels set
  • Verify that accessibility labels work properly using VoiceOver

3. GDPR Compliant

  • If the app will be released in a EU state member country and has a sign-in, the app should comply to GDPR

4. Support platform-specific UX patterns

  • Swipe to go back
  • Haptic feedback
  • Tap the statusbar to scroll to the top of a list
  • Swipe down to refresh a list for dynamic content

5. Has a framerate of at least 60 fps

Try to stay above 60 fps throughout the runtime of the application. Anything lower may look sluggish.

6. Somewhat usable without internet connection

Don't introduce banners or block the entire UI when there is no internet connection. Instead, implement caches or offline first so the user isn't restricted as much

7. Backwards compatibilty with persisted data

On every app update, make sure that changes in the persisted data format are handled correctly

8. Non-interruptive user flows

Alerts and popups should be used sparingly, as they require immediate user attention and a call to action

9. Overboard with onboarding

Don't torture your first-time users with endless mandatory actions (tapping a 'close' button is also an action) before they can use your app. Ideally, don't require a sign in for features that don't need it

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published