insertItem(withObjectValue:at:)
Inserts an object at the specified location in the internal item list.
Declaration
func insertItem(withObjectValue object: Any, at index: Int)Parameters
- object:
The object to add to the combo box’s internal item list.
- index:
The index at which to add the specified object. The previous item at
index—along with all following items—is shifted down one slot to make room.
Discussion
This method logs a warning if usesDataSource is true.