NEW: My new book Pro SwiftUI is out now – level up your SwiftUI skills today! >>

How to fix “Initializer 'init(_:rowContent:)' requires that ‘SomeType’ conform to 'Identifiable’”

Paul Hudson    @twostraws   

Updated for Xcode 14.2

There are three common reasons this error occurs, and all are relatively easy to fix.

The first reason is using a List or ForEach like this:

ForEach(1...10) {

SwiftUI supports the half-open range operator, ..<, but not the closed range operator. As a result, you need to rewrite the above code to this:

ForEach(0..<10) {

The second reason is using a List or ForEach on primitive types that don’t conform to the Identifiable protocol, such as an array of strings or integers. In this situation, you should use id: \.self as the second parameter to your List or ForEach, like this:

ForEach(stringArray, id: \.self) {

That tells SwiftUI that each value in the array is unique, and so can be used to identify each item in the loop.

The final reason its happens is if you’re looping over an array of custom structs that don’t conform to Identifiable. Here you should add either add a conformance to that protocol (which means adding an id property that is unique), or use id: \.someUniquePropertyName as the second parameter to your List or ForEach, which uses that property instead of the ID.

For example:

struct User: Identifiable {
    let id = UUID()
    let username: String
}

If you were looping over an array of those User objects and wanted to identify them uniquely by their username, you’d use this:

ForEach(users, id: \.username) {
Hacking with Swift is sponsored by Essential Developer

SPONSORED From March 20th to 26th, you can join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer!

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Similar solutions…

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 4.5/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.