---
title: "itemObjectValue(at:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nscombobox/itemobjectvalue(at:)"
---

# itemObjectValue(at:)

Returns the object located at the given index within the receiver’s internal item list.

## Declaration

```swift
func itemObjectValue(at index: Int) -> Any
```

## Parameters

- `index`: The index of the object to retrieve. If index is beyond the end of the list, an NSRangeException is raised.

## Return Value

Return Value The object located at the specified index in the internal item list.

## Discussion

Discussion This method logs a warning if the usesDataSource property is true.

## See Also

### Related Documentation

- [objectValueOfSelectedItem](appkit/nscombobox/objectvalueofselecteditem.md)

### Manipulating the Displayed List

- [indexOfItem(withObjectValue:)](appkit/nscombobox/indexofitem(withobjectvalue:).md)
- [noteNumberOfItemsChanged()](appkit/nscombobox/notenumberofitemschanged().md)
- [reloadData()](appkit/nscombobox/reloaddata().md)
- [scrollItemAtIndexToTop(_:)](appkit/nscombobox/scrollitematindextotop(_:).md)
- [scrollItemAtIndexToVisible(_:)](appkit/nscombobox/scrollitematindextovisible(_:).md)
