Contents

data(forPasteboardType:inItemSet:)

Returns the data objects in the indicated pasteboard items that have the given representation type.

Declaration

func data(forPasteboardType pasteboardType: String, inItemSet itemSet: IndexSet?) -> [Data]?

Parameters

  • pasteboardType:

    A string identifying a representation type. Typically this is a UTI.

  • itemSet:

    An index set with each integer value identifying a pasteboard item positionally in the pasteboard. Pass in nil to request all pasteboard items.

Return Value

An array of NSData objects or, if a requested pasteboard item has no data of the the type indicated by pasteboardType, a NSNull object.

See Also

Getting and setting pasteboard items