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

# itemObjectValue(at:)

Returns the object located at the specified location in the internal item list.

## Declaration

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

## Parameters

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

## Return Value

Return Value The object at the given location in the combo box’s internal item list.

## Discussion

Discussion This method logs a warning if usesDataSource is true.

## See Also

### Related Documentation

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

### Manipulating the Displayed List

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