Skip to main content

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

About 3 minSwiftSwiftUIArticle(s)bloghackingwithswift.comcrashcourseswiftswiftuixcodeappstore

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

SwiftUI by Example

Back to Home

How to fix “Initializer 'init(_:rowContent:)' requires that 'SomeType' conform to 'Identifiable'” | SwiftUI by Example

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

Updated for Xcode 15

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) {
Similar solutions…
How to fix “Referencing initializer 'init(wrappedValue:)' on 'ObservedObject' requires that 'SomeType' conform to 'ObservableObject'” | SwiftUI by Example

How to fix “Referencing initializer 'init(wrappedValue:)' on 'ObservedObject' requires that 'SomeType' conform to 'ObservableObject'”
How to fix “Fatal error: No ObservableObject of type SomeType found” | SwiftUI by Example

How to fix “Fatal error: No ObservableObject of type SomeType found”
How to fix “Property declares an opaque return type, but has no initializer expression from which to infer an underlying type” | SwiftUI by Example

How to fix “Property declares an opaque return type, but has no initializer expression from which to infer an underlying type”
How to fix “Modifying state during view update, this will cause undefined behavior” | SwiftUI by Example

How to fix “Modifying state during view update, this will cause undefined behavior”
How to fix “Protocol 'View' can only be used as a generic constraint because it has Self or associated type requirements” | SwiftUI by Example

How to fix “Protocol 'View' can only be used as a generic constraint because it has Self or associated type requirements”

이찬희 (MarkiiimarK)
Never Stop Learning.