---
title: "decodeTopLevelObject(of:forKey:)"
framework: foundation
role: symbol
role_heading: Instance Method
path: "foundation/nscoder/decodetoplevelobject(of:forkey:)-3w6pd"
---

# decodeTopLevelObject(of:forKey:)

Decode an object as one of several expected types, failing if the archived type does not match.

## Declaration

```swift
func decodeTopLevelObject<DecodedObjectType>(of cls: DecodedObjectType.Type, forKey key: String) throws -> DecodedObjectType? where DecodedObjectType : NSObject, DecodedObjectType : NSCoding
```

## Parameters

- `cls`: The expected class of the object being decoded.
- `key`: The key indicating the member to decode.

## Return Value

Return Value The decoded object, or nil if decoding fails.

## Discussion

Discussion If the coder responds true to requiresSecureCoding, then the coder calls failWithError(_:) in either the following cases: The class indicated by cls does not implement NSSecureCoding. The unarchived class does not match cls, nor do any of its superclasses. If the coder does not require secure coding, it ignores the cls parameter and does not check the decoded object.

## See Also

### Decoding Top-Level Objects

- [decodeObject(of:forKey:)](foundation/nscoder/decodeobject(of:forkey:)-7tmft.md)
- [decodeObject(of:forKey:)](foundation/nscoder/decodeobject(of:forkey:)-roif.md)
- [decodeTopLevelObject()](foundation/nscoder/decodetoplevelobject().md)
- [decodeTopLevelObject(forKey:)](foundation/nscoder/decodetoplevelobject(forkey:).md)
- [decodeTopLevelObject(of:forKey:)](foundation/nscoder/decodetoplevelobject(of:forkey:)-5lnnn.md)
