corespotlight

package
v0.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 21, 2024 License: MIT Imports: 5 Imported by: 0

Documentation

Overview

Index your app so users can search the content from Spotlight and Safari.

Apple Documentation

Index

Constants

This section is empty.

Variables

View Source
var CustomAttributeKeyClass = _CustomAttributeKeyClass{objc.GetClass("CSCustomAttributeKey")}

The class instance for the CustomAttributeKey class.

View Source
var ImportExtensionClass = _ImportExtensionClass{objc.GetClass("CSImportExtension")}

The class instance for the ImportExtension class.

View Source
var IndexExtensionRequestHandlerClass = _IndexExtensionRequestHandlerClass{objc.GetClass("CSIndexExtensionRequestHandler")}

The class instance for the IndexExtensionRequestHandler class.

View Source
var LocalizedStringClass = _LocalizedStringClass{objc.GetClass("CSLocalizedString")}

The class instance for the LocalizedString class.

View Source
var PersonClass = _PersonClass{objc.GetClass("CSPerson")}

The class instance for the Person class.

View Source
var SearchQueryClass = _SearchQueryClass{objc.GetClass("CSSearchQuery")}

The class instance for the SearchQuery class.

View Source
var SearchableIndexClass = _SearchableIndexClass{objc.GetClass("CSSearchableIndex")}

The class instance for the SearchableIndex class.

View Source
var SearchableItemAttributeSetClass = _SearchableItemAttributeSetClass{objc.GetClass("CSSearchableItemAttributeSet")}

The class instance for the SearchableItemAttributeSet class.

View Source
var SearchableItemClass = _SearchableItemClass{objc.GetClass("CSSearchableItem")}

The class instance for the SearchableItem class.

Functions

func SearchableIndex_IsIndexingAvailable

func SearchableIndex_IsIndexingAvailable() bool

Returns a Boolean value that indicates whether indexing is available on the current device. Full Topic

Types

type CustomAttributeKey

type CustomAttributeKey struct {
	objc.Object
}

A key associated with a custom attribute for a searchable item. Full Topic

func CustomAttributeKeyFrom

func CustomAttributeKeyFrom(ptr unsafe.Pointer) CustomAttributeKey

func NewCustomAttributeKey

func NewCustomAttributeKey() CustomAttributeKey

func NewCustomAttributeKeyWithKeyName

func NewCustomAttributeKeyWithKeyName(keyName string) CustomAttributeKey

Returns a new custom attribute key with the specified name. Full Topic

func NewCustomAttributeKeyWithKeyNameSearchableSearchableByDefaultUniqueMultiValued

func NewCustomAttributeKeyWithKeyNameSearchableSearchableByDefaultUniqueMultiValued(keyName string, searchable bool, searchableByDefault bool, unique bool, multiValued bool) CustomAttributeKey

Returns a new custom attribute key with the specified name and properties. Full Topic

func (CustomAttributeKey) Init

func (CustomAttributeKey) InitWithKeyName

func (c_ CustomAttributeKey) InitWithKeyName(keyName string) CustomAttributeKey

func (CustomAttributeKey) InitWithKeyNameSearchableSearchableByDefaultUniqueMultiValued

func (c_ CustomAttributeKey) InitWithKeyNameSearchableSearchableByDefaultUniqueMultiValued(keyName string, searchable bool, searchableByDefault bool, unique bool, multiValued bool) CustomAttributeKey

func (CustomAttributeKey) IsMultiValued

func (c_ CustomAttributeKey) IsMultiValued() bool

A Boolean value that indicates if the custom attribute is likely to have multiple values, such as arrays, associated with it. Full Topic

func (CustomAttributeKey) IsSearchable

func (c_ CustomAttributeKey) IsSearchable() bool

A Boolean value that indicates if the custom attribute can be specified as a search term. Full Topic

func (CustomAttributeKey) IsSearchableByDefault

func (c_ CustomAttributeKey) IsSearchableByDefault() bool

A Boolean value that indicates if the custom attribute should be searchable by default. Full Topic

func (CustomAttributeKey) IsUnique

func (c_ CustomAttributeKey) IsUnique() bool

A Boolean value that indicates if duplicate custom attribute values should be treated as the same value to save storage space. Full Topic

func (CustomAttributeKey) KeyName

func (c_ CustomAttributeKey) KeyName() string

The name of the custom attribute key. Full Topic

type ICustomAttributeKey

type ICustomAttributeKey interface {
	objc.IObject
	IsMultiValued() bool
	IsSearchableByDefault() bool
	IsUnique() bool
	IsSearchable() bool
	KeyName() string
}

An interface definition for the CustomAttributeKey class.

type IImportExtension

type IImportExtension interface {
	objc.IObject
	UpdateAttributesForFileAtURLError(attributes ISearchableItemAttributeSet, contentURL foundation.IURL, error unsafe.Pointer) bool
}

An interface definition for the ImportExtension class.

type IIndexExtensionRequestHandler

type IIndexExtensionRequestHandler interface {
	objc.IObject
}

An interface definition for the IndexExtensionRequestHandler class.

type ILocalizedString

type ILocalizedString interface {
	foundation.IString
	LocalizedString() string
}

An interface definition for the LocalizedString class.

type IPerson

type IPerson interface {
	objc.IObject
	DisplayName() string
	HandleIdentifier() string
	Handles() []string
	ContactIdentifier() string
	SetContactIdentifier(value string)
}

An interface definition for the Person class.

type ISearchQuery

type ISearchQuery interface {
	objc.IObject
	Start()
	Cancel()
	CompletionHandler() func(error foundation.Error)
	SetCompletionHandler(value func(error foundation.Error))
	FoundItemCount() uint
	ProtectionClasses() []foundation.FileProtectionType
	SetProtectionClasses(value []foundation.FileProtectionType)
	IsCancelled() bool
	FoundItemsHandler() func(items []SearchableItem)
	SetFoundItemsHandler(value func(items []SearchableItem))
}

An interface definition for the SearchQuery class.

type ISearchableIndex

type ISearchableIndex interface {
	objc.IObject
	BeginIndexBatch()
	EndIndexBatchWithClientStateCompletionHandler(clientState []byte, completionHandler func(error foundation.Error))
	DeleteSearchableItemsWithDomainIdentifiersCompletionHandler(domainIdentifiers []string, completionHandler func(error foundation.Error))
	DeleteSearchableItemsWithIdentifiersCompletionHandler(identifiers []string, completionHandler func(error foundation.Error))
	FetchLastClientStateWithCompletionHandler(completionHandler func(clientState []byte, error foundation.Error))
	IndexSearchableItemsCompletionHandler(items []ISearchableItem, completionHandler func(error foundation.Error))
	DeleteAllSearchableItemsWithCompletionHandler(completionHandler func(error foundation.Error))
	IndexDelegate() SearchableIndexDelegateObject
	SetIndexDelegate(value PSearchableIndexDelegate)
	SetIndexDelegateObject(valueObject objc.IObject)
}

An interface definition for the SearchableIndex class.

type ISearchableItem

type ISearchableItem interface {
	objc.IObject
	DomainIdentifier() string
	SetDomainIdentifier(value string)
	UniqueIdentifier() string
	SetUniqueIdentifier(value string)
	ExpirationDate() foundation.Date
	SetExpirationDate(value foundation.IDate)
	AttributeSet() SearchableItemAttributeSet
	SetAttributeSet(value ISearchableItemAttributeSet)
}

An interface definition for the SearchableItem class.

type ISearchableItemAttributeSet

type ISearchableItemAttributeSet interface {
	objc.IObject
	SetValueForCustomKey(value objc.IObject, key ICustomAttributeKey)
	ValueForCustomKey(key ICustomAttributeKey) objc.Object
	AddedDate() foundation.Date
	SetAddedDate(value foundation.IDate)
	IsLikelyJunk() foundation.Number
	SetLikelyJunk(value foundation.INumber)
	Version() string
	SetVersion(value string)
	Producer() string
	SetProducer(value string)
	Subject() string
	SetSubject(value string)
	TotalBitRate() foundation.Number
	SetTotalBitRate(value foundation.INumber)
	GPSAreaInformation() string
	SetGPSAreaInformation(value string)
	DownloadedDate() foundation.Date
	SetDownloadedDate(value foundation.IDate)
	Audiences() []string
	SetAudiences(value []string)
	GPSMeasureMode() string
	SetGPSMeasureMode(value string)
	EXIFGPSVersion() string
	SetEXIFGPSVersion(value string)
	PlayCount() foundation.Number
	SetPlayCount(value foundation.INumber)
	Rating() foundation.Number
	SetRating(value foundation.INumber)
	RecipientNames() []string
	SetRecipientNames(value []string)
	ExposureTimeString() string
	SetExposureTimeString(value string)
	PixelWidth() foundation.Number
	SetPixelWidth(value foundation.INumber)
	GPSMapDatum() string
	SetGPSMapDatum(value string)
	AllDay() foundation.Number
	SetAllDay(value foundation.INumber)
	MusicalInstrumentCategory() string
	SetMusicalInstrumentCategory(value string)
	ThumbnailData() []byte
	SetThumbnailData(value []byte)
	SupportsPhoneCall() foundation.Number
	SetSupportsPhoneCall(value foundation.INumber)
	CameraOwner() string
	SetCameraOwner(value string)
	SubThoroughfare() string
	SetSubThoroughfare(value string)
	OriginalSource() string
	SetOriginalSource(value string)
	AdditionalRecipients() []Person
	SetAdditionalRecipients(value []IPerson)
	ProfileName() string
	SetProfileName(value string)
	Rights() string
	SetRights(value string)
	AudioEncodingApplication() string
	SetAudioEncodingApplication(value string)
	ContentSources() []string
	SetContentSources(value []string)
	PixelHeight() foundation.Number
	SetPixelHeight(value foundation.INumber)
	Country() string
	SetCountry(value string)
	Keywords() []string
	SetKeywords(value []string)
	EXIFVersion() string
	SetEXIFVersion(value string)
	GPSProcessingMethod() string
	SetGPSProcessingMethod(value string)
	DarkThumbnailURL() foundation.URL
	SetDarkThumbnailURL(value foundation.IURL)
	Thoroughfare() string
	SetThoroughfare(value string)
	InstantMessageAddresses() []string
	SetInstantMessageAddresses(value []string)
	Aperture() foundation.Number
	SetAperture(value foundation.INumber)
	ResolutionWidthDPI() foundation.Number
	SetResolutionWidthDPI(value foundation.INumber)
	DueDate() foundation.Date
	SetDueDate(value foundation.IDate)
	RecipientEmailAddresses() []string
	SetRecipientEmailAddresses(value []string)
	DisplayName() string
	SetDisplayName(value string)
	KeySignature() string
	SetKeySignature(value string)
	MusicalGenre() string
	SetMusicalGenre(value string)
	ExposureTime() foundation.Number
	SetExposureTime(value foundation.INumber)
	GPSDestDistance() foundation.Number
	SetGPSDestDistance(value foundation.INumber)
	AudioBitRate() foundation.Number
	SetAudioBitRate(value foundation.INumber)
	PageWidth() foundation.Number
	SetPageWidth(value foundation.INumber)
	AudioChannelCount() foundation.Number
	SetAudioChannelCount(value foundation.INumber)
	IsRedEyeOn() foundation.Number
	SetRedEyeOn(value foundation.INumber)
	Composer() string
	SetComposer(value string)
	ImageDirection() foundation.Number
	SetImageDirection(value foundation.INumber)
	GPSTrack() foundation.Number
	SetGPSTrack(value foundation.INumber)
	Instructions() string
	SetInstructions(value string)
	AccountHandles() []string
	SetAccountHandles(value []string)
	FontNames() []string
	SetFontNames(value []string)
	ISOSpeed() foundation.Number
	SetISOSpeed(value foundation.INumber)
	City() string
	SetCity(value string)
	WhiteBalance() foundation.Number
	SetWhiteBalance(value foundation.INumber)
	AccountIdentifier() string
	SetAccountIdentifier(value string)
	PageCount() foundation.Number
	SetPageCount(value foundation.INumber)
	PixelCount() foundation.Number
	SetPixelCount(value foundation.INumber)
	Latitude() foundation.Number
	SetLatitude(value foundation.INumber)
	RecipientAddresses() []string
	SetRecipientAddresses(value []string)
	AudioSampleRate() foundation.Number
	SetAudioSampleRate(value foundation.INumber)
	GPSStatus() string
	SetGPSStatus(value string)
	GPSDOP() foundation.Number
	SetGPSDOP(value foundation.INumber)
	Altitude() foundation.Number
	SetAltitude(value foundation.INumber)
	ContactKeywords() []string
	SetContactKeywords(value []string)
	Information() string
	SetInformation(value string)
	AcquisitionMake() string
	SetAcquisitionMake(value string)
	SecurityMethod() string
	SetSecurityMethod(value string)
	GPSDestBearing() foundation.Number
	SetGPSDestBearing(value foundation.INumber)
	ContentDescription() string
	SetContentDescription(value string)
	Headline() string
	SetHeadline(value string)
	TextContent() string
	SetTextContent(value string)
	MediaTypes() []string
	SetMediaTypes(value []string)
	Title() string
	SetTitle(value string)
	AuthorAddresses() []string
	SetAuthorAddresses(value []string)
	TimeSignature() string
	SetTimeSignature(value string)
	GPSDifferental() foundation.Number
	SetGPSDifferental(value foundation.INumber)
	AudioTrackNumber() foundation.Number
	SetAudioTrackNumber(value foundation.INumber)
	Editors() []string
	SetEditors(value []string)
	ContainerOrder() foundation.Number
	SetContainerOrder(value foundation.INumber)
	Artist() string
	SetArtist(value string)
	Role() string
	SetRole(value string)
	LensModel() string
	SetLensModel(value string)
	GPSDestLatitude() foundation.Number
	SetGPSDestLatitude(value foundation.INumber)
	FocalLength() foundation.Number
	SetFocalLength(value foundation.INumber)
	LayerNames() []string
	SetLayerNames(value []string)
	ProviderFileTypeIdentifiers() []string
	SetProviderFileTypeIdentifiers(value []string)
	Languages() []string
	SetLanguages(value []string)
	Creator() string
	SetCreator(value string)
	Publishers() []string
	SetPublishers(value []string)
	ContentType() string
	SetContentType(value string)
	PhoneNumbers() []string
	SetPhoneNumbers(value []string)
	ImportantDates() []foundation.Date
	SetImportantDates(value []foundation.IDate)
	RecordingDate() foundation.Date
	SetRecordingDate(value foundation.IDate)
	ProviderDataTypeIdentifiers() []string
	SetProviderDataTypeIdentifiers(value []string)
	Organizations() []string
	SetOrganizations(value []string)
	Longitude() foundation.Number
	SetLongitude(value foundation.INumber)
	PageHeight() foundation.Number
	SetPageHeight(value foundation.INumber)
	ContainerIdentifier() string
	SetContainerIdentifier(value string)
	StateOrProvince() string
	SetStateOrProvince(value string)
	ContentRating() foundation.Number
	SetContentRating(value foundation.INumber)
	IsStreamable() foundation.Number
	SetStreamable(value foundation.INumber)
	MetadataModificationDate() foundation.Date
	SetMetadataModificationDate(value foundation.IDate)
	Lyricist() string
	SetLyricist(value string)
	OriginalFormat() string
	SetOriginalFormat(value string)
	Director() string
	SetDirector(value string)
	Orientation() foundation.Number
	SetOrientation(value foundation.INumber)
	Participants() []string
	SetParticipants(value []string)
	Path() string
	SetPath(value string)
	EmailHeaders() map[string][]objc.Object
	SetEmailHeaders(value map[string][]objc.IObject)
	ColorSpace() string
	SetColorSpace(value string)
	VideoBitRate() foundation.Number
	SetVideoBitRate(value foundation.INumber)
	DeliveryType() foundation.Number
	SetDeliveryType(value foundation.INumber)
	Genre() string
	SetGenre(value string)
	AuthorNames() []string
	SetAuthorNames(value []string)
	AlternateNames() []string
	SetAlternateNames(value []string)
	ContentModificationDate() foundation.Date
	SetContentModificationDate(value foundation.IDate)
	Identifier() string
	SetIdentifier(value string)
	HTMLContentData() []byte
	SetHTMLContentData(value []byte)
	IsUserOwned() foundation.Number
	SetUserOwned(value foundation.INumber)
	IsFlashOn() foundation.Number
	SetFlashOn(value foundation.INumber)
	IsGeneralMIDISequence() foundation.Number
	SetGeneralMIDISequence(value foundation.INumber)
	Speed() foundation.Number
	SetSpeed(value foundation.INumber)
	Timestamp() foundation.Date
	SetTimestamp(value foundation.IDate)
	Comment() string
	SetComment(value string)
	MusicalInstrumentName() string
	SetMusicalInstrumentName(value string)
	Authors() []Person
	SetAuthors(value []IPerson)
	Album() string
	SetAlbum(value string)
	Codecs() []string
	SetCodecs(value []string)
	ThumbnailURL() foundation.URL
	SetThumbnailURL(value foundation.IURL)
	NamedLocation() string
	SetNamedLocation(value string)
	GPSDestLongitude() foundation.Number
	SetGPSDestLongitude(value foundation.INumber)
	PostalCode() string
	SetPostalCode(value string)
	FileSize() foundation.Number
	SetFileSize(value foundation.INumber)
	MailboxIdentifiers() []string
	SetMailboxIdentifiers(value []string)
	StartDate() foundation.Date
	SetStartDate(value foundation.IDate)
	BitsPerSample() foundation.Number
	SetBitsPerSample(value foundation.INumber)
	IsUserCurated() foundation.Number
	SetUserCurated(value foundation.INumber)
	URL() foundation.URL
	SetURL(value foundation.IURL)
	AuthorEmailAddresses() []string
	SetAuthorEmailAddresses(value []string)
	ExposureMode() foundation.Number
	SetExposureMode(value foundation.INumber)
	AcquisitionModel() string
	SetAcquisitionModel(value string)
	Contributors() []string
	SetContributors(value []string)
	Tempo() foundation.Number
	SetTempo(value foundation.INumber)
	CompletionDate() foundation.Date
	SetCompletionDate(value foundation.IDate)
	DomainIdentifier() string
	SetDomainIdentifier(value string)
	Projects() []string
	SetProjects(value []string)
	EndDate() foundation.Date
	SetEndDate(value foundation.IDate)
	ContainerDisplayName() string
	SetContainerDisplayName(value string)
	FNumber() foundation.Number
	SetFNumber(value foundation.INumber)
	HiddenAdditionalRecipients() []Person
	SetHiddenAdditionalRecipients(value []IPerson)
	Kind() string
	SetKind(value string)
	ExposureProgram() string
	SetExposureProgram(value string)
	Duration() foundation.Number
	SetDuration(value foundation.INumber)
	EmailAddresses() []string
	SetEmailAddresses(value []string)
	Performers() []string
	SetPerformers(value []string)
	Coverage() []string
	SetCoverage(value []string)
	ContentCreationDate() foundation.Date
	SetContentCreationDate(value foundation.IDate)
	Theme() string
	SetTheme(value string)
	PrimaryRecipients() []Person
	SetPrimaryRecipients(value []IPerson)
	FullyFormattedAddress() string
	SetFullyFormattedAddress(value string)
	IsUserCreated() foundation.Number
	SetUserCreated(value foundation.INumber)
	RelatedUniqueIdentifier() string
	SetRelatedUniqueIdentifier(value string)
	GPSDateStamp() foundation.Date
	SetGPSDateStamp(value foundation.IDate)
	ContentTypeTree() []string
	SetContentTypeTree(value []string)
	ContentURL() foundation.URL
	SetContentURL(value foundation.IURL)
	ResolutionHeightDPI() foundation.Number
	SetResolutionHeightDPI(value foundation.INumber)
	ContainerTitle() string
	SetContainerTitle(value string)
	HasAlphaChannel() foundation.Number
	SetHasAlphaChannel(value foundation.INumber)
	RatingDescription() string
	SetRatingDescription(value string)
	MaxAperture() foundation.Number
	SetMaxAperture(value foundation.INumber)
	MeteringMode() string
	SetMeteringMode(value string)
	LastUsedDate() foundation.Date
	SetLastUsedDate(value foundation.IDate)
	SupportsNavigation() foundation.Number
	SetSupportsNavigation(value foundation.INumber)
	RankingHint() foundation.Number
	SetRankingHint(value foundation.INumber)
	EncodingApplications() []string
	SetEncodingApplications(value []string)
	IsLocal() foundation.Number
	SetLocal(value foundation.INumber)
	WeakRelatedUniqueIdentifier() string
	SetWeakRelatedUniqueIdentifier(value string)
	IsFocalLength35mm() foundation.Number
	SetFocalLength35mm(value foundation.INumber)
	Copyright() string
	SetCopyright(value string)
	ProviderInPlaceFileTypeIdentifiers() []string
	SetProviderInPlaceFileTypeIdentifiers(value []string)
}

An interface definition for the SearchableItemAttributeSet class.

type ImportExtension

type ImportExtension struct {
	objc.Object
}

An object that provides searchable attributes for file types that the app supports. Full Topic

func ImportExtensionFrom

func ImportExtensionFrom(ptr unsafe.Pointer) ImportExtension

func NewImportExtension

func NewImportExtension() ImportExtension

func (ImportExtension) Init

func (i_ ImportExtension) Init() ImportExtension

func (ImportExtension) UpdateAttributesForFileAtURLError

func (i_ ImportExtension) UpdateAttributesForFileAtURLError(attributes ISearchableItemAttributeSet, contentURL foundation.IURL, error unsafe.Pointer) bool

Provides searchable attributes for a file at the specified URL. Full Topic

type IndexErrorCode

type IndexErrorCode int

Error codes that describe indexing-specific errors. Full Topic

const (
	IndexErrorCodeIndexUnavailableError   IndexErrorCode = -1000
	IndexErrorCodeIndexingUnsupported     IndexErrorCode = -1005
	IndexErrorCodeInvalidClientStateError IndexErrorCode = -1002
	IndexErrorCodeInvalidItemError        IndexErrorCode = -1001
	IndexErrorCodeQuotaExceeded           IndexErrorCode = -1004
	IndexErrorCodeRemoteConnectionError   IndexErrorCode = -1003
	IndexErrorCodeUnknownError            IndexErrorCode = -1
)

type IndexExtensionRequestHandler

type IndexExtensionRequestHandler struct {
	objc.Object
}

An interface that implements an index-maintenance app extension. Full Topic

func IndexExtensionRequestHandlerFrom

func IndexExtensionRequestHandlerFrom(ptr unsafe.Pointer) IndexExtensionRequestHandler

func NewIndexExtensionRequestHandler

func NewIndexExtensionRequestHandler() IndexExtensionRequestHandler

func (IndexExtensionRequestHandler) Init

type LocalizedString

type LocalizedString struct {
	foundation.String
}

An object displaying localized text in search results related to your app. Full Topic

func LocalizedStringFrom

func LocalizedStringFrom(ptr unsafe.Pointer) LocalizedString

func LocalizedString_LocalizedStringWithFormat

func LocalizedString_LocalizedStringWithFormat(format string, args ...any) LocalizedString

Returns a string created by using a given format string as a template into which the remaining argument values are substituted according to the current locale. Full Topic

func LocalizedString_String

func LocalizedString_String() LocalizedString

Returns an empty string. Full Topic

func LocalizedString_StringWithCStringEncoding

func LocalizedString_StringWithCStringEncoding(cString *uint8, enc foundation.StringEncoding) LocalizedString

Returns a string containing the bytes in a given C array, interpreted according to a given encoding. Full Topic

func LocalizedString_StringWithCharactersLength

func LocalizedString_StringWithCharactersLength(characters *foundation.Unichar, length uint) LocalizedString

Returns a string containing a given number of characters taken from a given C array of UTF-16 code units. Full Topic

func LocalizedString_StringWithContentsOfFileEncodingError

func LocalizedString_StringWithContentsOfFileEncodingError(path string, enc foundation.StringEncoding, error unsafe.Pointer) LocalizedString

Returns a string created by reading data from the file at a given path interpreted using a given encoding. Full Topic

func LocalizedString_StringWithContentsOfFileUsedEncodingError

func LocalizedString_StringWithContentsOfFileUsedEncodingError(path string, enc *foundation.StringEncoding, error unsafe.Pointer) LocalizedString

Returns a string created by reading data from the file at a given path and returns by reference the encoding used to interpret the file. Full Topic

func LocalizedString_StringWithContentsOfURLEncodingError

func LocalizedString_StringWithContentsOfURLEncodingError(url foundation.IURL, enc foundation.StringEncoding, error unsafe.Pointer) LocalizedString

Returns a string created by reading data from a given URL interpreted using a given encoding. Full Topic

func LocalizedString_StringWithContentsOfURLUsedEncodingError

func LocalizedString_StringWithContentsOfURLUsedEncodingError(url foundation.IURL, enc *foundation.StringEncoding, error unsafe.Pointer) LocalizedString

Returns a string created by reading data from a given URL and returns by reference the encoding used to interpret the data. Full Topic

func LocalizedString_StringWithFormat

func LocalizedString_StringWithFormat(format string, args ...any) LocalizedString

Returns a string created by using a given format string as a template into which the remaining argument values are substituted. Full Topic

func LocalizedString_StringWithString

func LocalizedString_StringWithString(string_ string) LocalizedString

Returns a string created by copying the characters from another given string. Full Topic

func LocalizedString_StringWithUTF8String

func LocalizedString_StringWithUTF8String(nullTerminatedCString *uint8) LocalizedString

Returns a string created by copying the data from a given C array of UTF8-encoded bytes. Full Topic

func NewLocalizedString

func NewLocalizedString() LocalizedString

func NewLocalizedStringWithBytesLengthEncoding

func NewLocalizedStringWithBytesLengthEncoding(bytes unsafe.Pointer, len uint, encoding foundation.StringEncoding) LocalizedString

Returns an initialized NSString object containing a given number of bytes from a given buffer of bytes interpreted in a given encoding. Full Topic

func NewLocalizedStringWithBytesNoCopyLengthEncodingDeallocator

func NewLocalizedStringWithBytesNoCopyLengthEncodingDeallocator(bytes unsafe.Pointer, len uint, encoding foundation.StringEncoding, deallocator func(arg0 unsafe.Pointer, arg1 uint)) LocalizedString
[Full Topic]

func NewLocalizedStringWithBytesNoCopyLengthEncodingFreeWhenDone

func NewLocalizedStringWithBytesNoCopyLengthEncodingFreeWhenDone(bytes unsafe.Pointer, len uint, encoding foundation.StringEncoding, freeBuffer bool) LocalizedString

Returns an initialized NSString object that contains a given number of bytes from a given buffer of bytes interpreted in a given encoding, and optionally frees the buffer. Full Topic

func NewLocalizedStringWithCStringEncoding

func NewLocalizedStringWithCStringEncoding(nullTerminatedCString *uint8, encoding foundation.StringEncoding) LocalizedString

Returns an NSString object initialized using the characters in a given C array, interpreted according to a given encoding. Full Topic

func NewLocalizedStringWithCharactersLength

func NewLocalizedStringWithCharactersLength(characters *foundation.Unichar, length uint) LocalizedString

Returns an initialized NSString object that contains a given number of characters from a given C array of UTF-16 code units. Full Topic

func NewLocalizedStringWithCharactersNoCopyLengthDeallocator

func NewLocalizedStringWithCharactersNoCopyLengthDeallocator(chars *foundation.Unichar, len uint, deallocator func(arg0 *foundation.Unichar, arg1 uint)) LocalizedString
[Full Topic]

func NewLocalizedStringWithCharactersNoCopyLengthFreeWhenDone

func NewLocalizedStringWithCharactersNoCopyLengthFreeWhenDone(characters *foundation.Unichar, length uint, freeBuffer bool) LocalizedString

Returns an initialized NSString object that contains a given number of characters from a given C array of UTF-16 code units. Full Topic

func NewLocalizedStringWithContentsOfFileEncodingError

func NewLocalizedStringWithContentsOfFileEncodingError(path string, enc foundation.StringEncoding, error unsafe.Pointer) LocalizedString

Returns an NSString object initialized by reading data from the file at a given path using a given encoding. Full Topic

func NewLocalizedStringWithContentsOfFileUsedEncodingError

func NewLocalizedStringWithContentsOfFileUsedEncodingError(path string, enc *foundation.StringEncoding, error unsafe.Pointer) LocalizedString

Returns an NSString object initialized by reading data from the file at a given path and returns by reference the encoding used to interpret the characters. Full Topic

func NewLocalizedStringWithContentsOfURLEncodingError

func NewLocalizedStringWithContentsOfURLEncodingError(url foundation.IURL, enc foundation.StringEncoding, error unsafe.Pointer) LocalizedString

Returns an NSString object initialized by reading data from a given URL interpreted using a given encoding. Full Topic

func NewLocalizedStringWithContentsOfURLUsedEncodingError

func NewLocalizedStringWithContentsOfURLUsedEncodingError(url foundation.IURL, enc *foundation.StringEncoding, error unsafe.Pointer) LocalizedString

Returns an NSString object initialized by reading data from a given URL and returns by reference the encoding used to interpret the data. Full Topic

func NewLocalizedStringWithDataEncoding

func NewLocalizedStringWithDataEncoding(data []byte, encoding foundation.StringEncoding) LocalizedString

Returns an NSString object initialized by converting given data into UTF-16 code units using a given encoding. Full Topic

func NewLocalizedStringWithFormat

func NewLocalizedStringWithFormat(format string, args ...any) LocalizedString

Returns an NSString object initialized by using a given format string as a template into which the remaining argument values are substituted. Full Topic

func NewLocalizedStringWithFormatLocale

func NewLocalizedStringWithFormatLocale(format string, locale objc.IObject, args ...any) LocalizedString

Returns an NSString object initialized by using a given format string as a template into which the remaining argument values are substituted according to given locale. Full Topic

func NewLocalizedStringWithLocalizedStrings

func NewLocalizedStringWithLocalizedStrings(localizedStrings foundation.Dictionary) LocalizedString

Initializes a CSLocalizedString object with the specified dictionary of localized strings. Full Topic

func NewLocalizedStringWithString

func NewLocalizedStringWithString(aString string) LocalizedString

Returns an NSString object initialized by copying the characters from another given string. Full Topic

func NewLocalizedStringWithUTF8String

func NewLocalizedStringWithUTF8String(nullTerminatedCString *uint8) LocalizedString

Returns an NSString object initialized by copying the characters from a given C array of UTF8-encoded bytes. Full Topic

func (LocalizedString) Init

func (l_ LocalizedString) Init() LocalizedString

func (LocalizedString) InitWithBytesLengthEncoding

func (l_ LocalizedString) InitWithBytesLengthEncoding(bytes unsafe.Pointer, len uint, encoding foundation.StringEncoding) LocalizedString

func (LocalizedString) InitWithBytesNoCopyLengthEncodingDeallocator

func (l_ LocalizedString) InitWithBytesNoCopyLengthEncodingDeallocator(bytes unsafe.Pointer, len uint, encoding foundation.StringEncoding, deallocator func(arg0 unsafe.Pointer, arg1 uint)) LocalizedString

func (LocalizedString) InitWithBytesNoCopyLengthEncodingFreeWhenDone

func (l_ LocalizedString) InitWithBytesNoCopyLengthEncodingFreeWhenDone(bytes unsafe.Pointer, len uint, encoding foundation.StringEncoding, freeBuffer bool) LocalizedString

func (LocalizedString) InitWithCStringEncoding

func (l_ LocalizedString) InitWithCStringEncoding(nullTerminatedCString *uint8, encoding foundation.StringEncoding) LocalizedString

func (LocalizedString) InitWithCharactersLength

func (l_ LocalizedString) InitWithCharactersLength(characters *foundation.Unichar, length uint) LocalizedString

func (LocalizedString) InitWithCharactersNoCopyLengthDeallocator

func (l_ LocalizedString) InitWithCharactersNoCopyLengthDeallocator(chars *foundation.Unichar, len uint, deallocator func(arg0 *foundation.Unichar, arg1 uint)) LocalizedString

func (LocalizedString) InitWithCharactersNoCopyLengthFreeWhenDone

func (l_ LocalizedString) InitWithCharactersNoCopyLengthFreeWhenDone(characters *foundation.Unichar, length uint, freeBuffer bool) LocalizedString

func (LocalizedString) InitWithContentsOfFileEncodingError

func (l_ LocalizedString) InitWithContentsOfFileEncodingError(path string, enc foundation.StringEncoding, error unsafe.Pointer) LocalizedString

func (LocalizedString) InitWithContentsOfFileUsedEncodingError

func (l_ LocalizedString) InitWithContentsOfFileUsedEncodingError(path string, enc *foundation.StringEncoding, error unsafe.Pointer) LocalizedString

func (LocalizedString) InitWithContentsOfURLEncodingError

func (l_ LocalizedString) InitWithContentsOfURLEncodingError(url foundation.IURL, enc foundation.StringEncoding, error unsafe.Pointer) LocalizedString

func (LocalizedString) InitWithContentsOfURLUsedEncodingError

func (l_ LocalizedString) InitWithContentsOfURLUsedEncodingError(url foundation.IURL, enc *foundation.StringEncoding, error unsafe.Pointer) LocalizedString

func (LocalizedString) InitWithDataEncoding

func (l_ LocalizedString) InitWithDataEncoding(data []byte, encoding foundation.StringEncoding) LocalizedString

func (LocalizedString) InitWithFormat

func (l_ LocalizedString) InitWithFormat(format string, args ...any) LocalizedString

func (LocalizedString) InitWithFormatLocale

func (l_ LocalizedString) InitWithFormatLocale(format string, locale objc.IObject, args ...any) LocalizedString

func (LocalizedString) InitWithLocalizedStrings

func (l_ LocalizedString) InitWithLocalizedStrings(localizedStrings foundation.Dictionary) LocalizedString

func (LocalizedString) InitWithString

func (l_ LocalizedString) InitWithString(aString string) LocalizedString

func (LocalizedString) InitWithUTF8String

func (l_ LocalizedString) InitWithUTF8String(nullTerminatedCString *uint8) LocalizedString

func (LocalizedString) LocalizedString

func (l_ LocalizedString) LocalizedString() string

Returns the localized string for the current language. Full Topic

type PSearchableIndexDelegate

type PSearchableIndexDelegate interface {
	// optional
	SearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler(searchableIndex SearchableIndex, identifiers []string, acknowledgementHandler func())
	HasSearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler() bool

	// optional
	SearchableIndexDidFinishThrottle(searchableIndex SearchableIndex)
	HasSearchableIndexDidFinishThrottle() bool

	// optional
	FileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError(searchableIndex SearchableIndex, itemIdentifier string, typeIdentifier string, inPlace bool, outError unsafe.Pointer) foundation.URL
	HasFileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError() bool

	// optional
	DataForSearchableIndexItemIdentifierTypeIdentifierError(searchableIndex SearchableIndex, itemIdentifier string, typeIdentifier string, outError unsafe.Pointer) []byte
	HasDataForSearchableIndexItemIdentifierTypeIdentifierError() bool

	// optional
	SearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler(searchableIndex SearchableIndex, acknowledgementHandler func())
	HasSearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler() bool

	// optional
	SearchableIndexDidThrottle(searchableIndex SearchableIndex)
	HasSearchableIndexDidThrottle() bool
}

A protocol defining methods a delegate object or app extension uses to handle communication from the on-device index. Full Topic

type Person

type Person struct {
	objc.Object
}

An object representing a person in the context of search results. Full Topic

func NewPerson

func NewPerson() Person

func NewPersonWithDisplayNameHandlesHandleIdentifier

func NewPersonWithDisplayNameHandlesHandleIdentifier(displayName string, handles []string, handleIdentifier string) Person

Returns a new CSPerson object initialized with the specified display name and contact attributes. Full Topic

func PersonFrom

func PersonFrom(ptr unsafe.Pointer) Person

func (Person) ContactIdentifier

func (p_ Person) ContactIdentifier() string

The identifier for the contact associated with the person. Full Topic

func (Person) DisplayName

func (p_ Person) DisplayName() string

A display name for the person. Full Topic

func (Person) HandleIdentifier

func (p_ Person) HandleIdentifier() string

A key that identifies the type of contact property represented by the person object’s handle. Full Topic

func (Person) Handles

func (p_ Person) Handles() []string

An array of contact handles related to the person. Full Topic

func (Person) Init

func (p_ Person) Init() Person

func (Person) InitWithDisplayNameHandlesHandleIdentifier

func (p_ Person) InitWithDisplayNameHandlesHandleIdentifier(displayName string, handles []string, handleIdentifier string) Person

func (Person) SetContactIdentifier

func (p_ Person) SetContactIdentifier(value string)

The identifier for the contact associated with the person. Full Topic

type SearchQuery

type SearchQuery struct {
	objc.Object
}

The criteria to apply when searching previously indexed app content. Full Topic

func NewSearchQuery

func NewSearchQuery() SearchQuery

func NewSearchQueryWithQueryStringAttributes

func NewSearchQueryWithQueryStringAttributes(queryString string, attributes []string) SearchQuery

Initializes and returns a query object with the specified query string and item attributes. Full Topic

func SearchQueryFrom

func SearchQueryFrom(ptr unsafe.Pointer) SearchQuery

func (SearchQuery) Cancel

func (s_ SearchQuery) Cancel()

Cancels a query operation. Full Topic

func (SearchQuery) CompletionHandler

func (s_ SearchQuery) CompletionHandler() func(error foundation.Error)

The block to execute when the query completes. Full Topic

func (SearchQuery) FoundItemCount

func (s_ SearchQuery) FoundItemCount() uint

The number of items found so far. Full Topic

func (SearchQuery) FoundItemsHandler

func (s_ SearchQuery) FoundItemsHandler() func(items []SearchableItem)

The block to execute when the query finds a new batch of matching items. Full Topic

func (SearchQuery) Init

func (s_ SearchQuery) Init() SearchQuery

func (SearchQuery) InitWithQueryStringAttributes

func (s_ SearchQuery) InitWithQueryStringAttributes(queryString string, attributes []string) SearchQuery

func (SearchQuery) IsCancelled

func (s_ SearchQuery) IsCancelled() bool

A Boolean value that indicates if the system has canceled the query. Full Topic

func (SearchQuery) ProtectionClasses

func (s_ SearchQuery) ProtectionClasses() []foundation.FileProtectionType

An array of data protection classes that correspond to the protection classes associated with the indexed items. Full Topic

func (SearchQuery) SetCompletionHandler

func (s_ SearchQuery) SetCompletionHandler(value func(error foundation.Error))

The block to execute when the query completes. Full Topic

func (SearchQuery) SetFoundItemsHandler

func (s_ SearchQuery) SetFoundItemsHandler(value func(items []SearchableItem))

The block to execute when the query finds a new batch of matching items. Full Topic

func (SearchQuery) SetProtectionClasses

func (s_ SearchQuery) SetProtectionClasses(value []foundation.FileProtectionType)

An array of data protection classes that correspond to the protection classes associated with the indexed items. Full Topic

func (SearchQuery) Start

func (s_ SearchQuery) Start()

Queries the index for items that match the query object’s specifications. Full Topic

type SearchQueryErrorCode

type SearchQueryErrorCode int

Error codes that describe reasons a query might fail. Full Topic

const (
	SearchQueryErrorCodeCancelled        SearchQueryErrorCode = -2003
	SearchQueryErrorCodeIndexUnreachable SearchQueryErrorCode = -2001
	SearchQueryErrorCodeInvalidQuery     SearchQueryErrorCode = -2002
	SearchQueryErrorCodeUnknown          SearchQueryErrorCode = -2000
)

type SearchableIndex

type SearchableIndex struct {
	objc.Object
}

The on-device index. Full Topic

func NewSearchableIndex

func NewSearchableIndex() SearchableIndex

func NewSearchableIndexWithName

func NewSearchableIndexWithName(name string) SearchableIndex

Returns an on-device index with the specified name. Full Topic

func NewSearchableIndexWithNameProtectionClass

func NewSearchableIndexWithNameProtectionClass(name string, protectionClass foundation.FileProtectionType) SearchableIndex

Returns an on-device index with the specified name and data protection class. Full Topic

func SearchableIndexFrom

func SearchableIndexFrom(ptr unsafe.Pointer) SearchableIndex

func SearchableIndex_DefaultSearchableIndex

func SearchableIndex_DefaultSearchableIndex() SearchableIndex

Returns the default on-device index. Full Topic

func (SearchableIndex) BeginIndexBatch

func (s_ SearchableIndex) BeginIndexBatch()

Begins a batch of updates to an index. Full Topic

func (SearchableIndex) DeleteAllSearchableItemsWithCompletionHandler

func (s_ SearchableIndex) DeleteAllSearchableItemsWithCompletionHandler(completionHandler func(error foundation.Error))

Deletes all searchable items from the index. Full Topic

func (SearchableIndex) DeleteSearchableItemsWithDomainIdentifiersCompletionHandler

func (s_ SearchableIndex) DeleteSearchableItemsWithDomainIdentifiersCompletionHandler(domainIdentifiers []string, completionHandler func(error foundation.Error))

Removes from the index all searchable items associated with the specified domain. Full Topic

func (SearchableIndex) DeleteSearchableItemsWithIdentifiersCompletionHandler

func (s_ SearchableIndex) DeleteSearchableItemsWithIdentifiersCompletionHandler(identifiers []string, completionHandler func(error foundation.Error))

Removes from the index all items with the specified identifiers. Full Topic

func (SearchableIndex) EndIndexBatchWithClientStateCompletionHandler

func (s_ SearchableIndex) EndIndexBatchWithClientStateCompletionHandler(clientState []byte, completionHandler func(error foundation.Error))

Ends a batch of index updates and stores the specified state information. Full Topic

func (SearchableIndex) FetchLastClientStateWithCompletionHandler

func (s_ SearchableIndex) FetchLastClientStateWithCompletionHandler(completionHandler func(clientState []byte, error foundation.Error))

Gets the app’s most recently stored state information. Full Topic

func (SearchableIndex) IndexDelegate

The delegate object that can handle index-management tasks. Full Topic

func (SearchableIndex) IndexSearchableItemsCompletionHandler

func (s_ SearchableIndex) IndexSearchableItemsCompletionHandler(items []ISearchableItem, completionHandler func(error foundation.Error))

Adds or updates items in the index. Full Topic

func (SearchableIndex) Init

func (s_ SearchableIndex) Init() SearchableIndex

func (SearchableIndex) InitWithName

func (s_ SearchableIndex) InitWithName(name string) SearchableIndex

func (SearchableIndex) InitWithNameProtectionClass

func (s_ SearchableIndex) InitWithNameProtectionClass(name string, protectionClass foundation.FileProtectionType) SearchableIndex

func (SearchableIndex) SetIndexDelegate

func (s_ SearchableIndex) SetIndexDelegate(value PSearchableIndexDelegate)

The delegate object that can handle index-management tasks. Full Topic

func (SearchableIndex) SetIndexDelegateObject

func (s_ SearchableIndex) SetIndexDelegateObject(valueObject objc.IObject)

The delegate object that can handle index-management tasks. Full Topic

type SearchableIndexDelegate

type SearchableIndexDelegate struct {
	// contains filtered or unexported fields
}

A delegate implementation builder for the PSearchableIndexDelegate protocol.

func (*SearchableIndexDelegate) DataForSearchableIndexItemIdentifierTypeIdentifierError

func (di *SearchableIndexDelegate) DataForSearchableIndexItemIdentifierTypeIdentifierError(searchableIndex SearchableIndex, itemIdentifier string, typeIdentifier string, outError unsafe.Pointer) []byte
[Full Topic]

func (*SearchableIndexDelegate) FileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError

func (di *SearchableIndexDelegate) FileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError(searchableIndex SearchableIndex, itemIdentifier string, typeIdentifier string, inPlace bool, outError unsafe.Pointer) foundation.URL
[Full Topic]

func (*SearchableIndexDelegate) HasDataForSearchableIndexItemIdentifierTypeIdentifierError

func (di *SearchableIndexDelegate) HasDataForSearchableIndexItemIdentifierTypeIdentifierError() bool

func (*SearchableIndexDelegate) HasFileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError

func (di *SearchableIndexDelegate) HasFileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError() bool

func (*SearchableIndexDelegate) HasSearchableIndexDidFinishThrottle

func (di *SearchableIndexDelegate) HasSearchableIndexDidFinishThrottle() bool

func (*SearchableIndexDelegate) HasSearchableIndexDidThrottle

func (di *SearchableIndexDelegate) HasSearchableIndexDidThrottle() bool

func (*SearchableIndexDelegate) HasSearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler

func (di *SearchableIndexDelegate) HasSearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler() bool

func (*SearchableIndexDelegate) HasSearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler

func (di *SearchableIndexDelegate) HasSearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler() bool

func (*SearchableIndexDelegate) SearchableIndexDidFinishThrottle

func (di *SearchableIndexDelegate) SearchableIndexDidFinishThrottle(searchableIndex SearchableIndex)

Tells the delegate that the index throttling has finished. Full Topic

func (*SearchableIndexDelegate) SearchableIndexDidThrottle

func (di *SearchableIndexDelegate) SearchableIndexDidThrottle(searchableIndex SearchableIndex)

Tells the delegate that indexing is being throttled. Full Topic

func (*SearchableIndexDelegate) SearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler

func (di *SearchableIndexDelegate) SearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler(searchableIndex SearchableIndex, acknowledgementHandler func())

Tells the delegate to reindex all searchable data and clear all local state information. Full Topic

func (*SearchableIndexDelegate) SearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler

func (di *SearchableIndexDelegate) SearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler(searchableIndex SearchableIndex, identifiers []string, acknowledgementHandler func())

Tells the delegate to reindex the searchable items associated with the specified identifiers. Full Topic

func (*SearchableIndexDelegate) SetDataForSearchableIndexItemIdentifierTypeIdentifierError

func (di *SearchableIndexDelegate) SetDataForSearchableIndexItemIdentifierTypeIdentifierError(f func(searchableIndex SearchableIndex, itemIdentifier string, typeIdentifier string, outError unsafe.Pointer) []byte)
[Full Topic]

func (*SearchableIndexDelegate) SetFileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError

func (di *SearchableIndexDelegate) SetFileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError(f func(searchableIndex SearchableIndex, itemIdentifier string, typeIdentifier string, inPlace bool, outError unsafe.Pointer) foundation.URL)
[Full Topic]

func (*SearchableIndexDelegate) SetSearchableIndexDidFinishThrottle

func (di *SearchableIndexDelegate) SetSearchableIndexDidFinishThrottle(f func(searchableIndex SearchableIndex))

Tells the delegate that the index throttling has finished. Full Topic

func (*SearchableIndexDelegate) SetSearchableIndexDidThrottle

func (di *SearchableIndexDelegate) SetSearchableIndexDidThrottle(f func(searchableIndex SearchableIndex))

Tells the delegate that indexing is being throttled. Full Topic

func (*SearchableIndexDelegate) SetSearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler

func (di *SearchableIndexDelegate) SetSearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler(f func(searchableIndex SearchableIndex, acknowledgementHandler func()))

Tells the delegate to reindex all searchable data and clear all local state information. Full Topic

func (*SearchableIndexDelegate) SetSearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler

func (di *SearchableIndexDelegate) SetSearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler(f func(searchableIndex SearchableIndex, identifiers []string, acknowledgementHandler func()))

Tells the delegate to reindex the searchable items associated with the specified identifiers. Full Topic

type SearchableIndexDelegateObject

type SearchableIndexDelegateObject struct {
	objc.Object
}

A concrete type for the PSearchableIndexDelegate protocol.

func (SearchableIndexDelegateObject) DataForSearchableIndexItemIdentifierTypeIdentifierError

func (s_ SearchableIndexDelegateObject) DataForSearchableIndexItemIdentifierTypeIdentifierError(searchableIndex SearchableIndex, itemIdentifier string, typeIdentifier string, outError unsafe.Pointer) []byte
[Full Topic]

func (SearchableIndexDelegateObject) FileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError

func (s_ SearchableIndexDelegateObject) FileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError(searchableIndex SearchableIndex, itemIdentifier string, typeIdentifier string, inPlace bool, outError unsafe.Pointer) foundation.URL
[Full Topic]

func (SearchableIndexDelegateObject) HasDataForSearchableIndexItemIdentifierTypeIdentifierError

func (s_ SearchableIndexDelegateObject) HasDataForSearchableIndexItemIdentifierTypeIdentifierError() bool

func (SearchableIndexDelegateObject) HasFileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError

func (s_ SearchableIndexDelegateObject) HasFileURLForSearchableIndexItemIdentifierTypeIdentifierInPlaceError() bool

func (SearchableIndexDelegateObject) HasSearchableIndexDidFinishThrottle

func (s_ SearchableIndexDelegateObject) HasSearchableIndexDidFinishThrottle() bool

func (SearchableIndexDelegateObject) HasSearchableIndexDidThrottle

func (s_ SearchableIndexDelegateObject) HasSearchableIndexDidThrottle() bool

func (SearchableIndexDelegateObject) HasSearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler

func (s_ SearchableIndexDelegateObject) HasSearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler() bool

func (SearchableIndexDelegateObject) HasSearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler

func (s_ SearchableIndexDelegateObject) HasSearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler() bool

func (SearchableIndexDelegateObject) SearchableIndexDidFinishThrottle

func (s_ SearchableIndexDelegateObject) SearchableIndexDidFinishThrottle(searchableIndex SearchableIndex)

Tells the delegate that the index throttling has finished. Full Topic

func (SearchableIndexDelegateObject) SearchableIndexDidThrottle

func (s_ SearchableIndexDelegateObject) SearchableIndexDidThrottle(searchableIndex SearchableIndex)

Tells the delegate that indexing is being throttled. Full Topic

func (SearchableIndexDelegateObject) SearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler

func (s_ SearchableIndexDelegateObject) SearchableIndexReindexAllSearchableItemsWithAcknowledgementHandler(searchableIndex SearchableIndex, acknowledgementHandler func())

Tells the delegate to reindex all searchable data and clear all local state information. Full Topic

func (SearchableIndexDelegateObject) SearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler

func (s_ SearchableIndexDelegateObject) SearchableIndexReindexSearchableItemsWithIdentifiersAcknowledgementHandler(searchableIndex SearchableIndex, identifiers []string, acknowledgementHandler func())

Tells the delegate to reindex the searchable items associated with the specified identifiers. Full Topic

type SearchableItem

type SearchableItem struct {
	objc.Object
}

An item that can be indexed and made available to users when they search on their devices. Full Topic

func NewSearchableItem

func NewSearchableItem() SearchableItem

func NewSearchableItemWithUniqueIdentifierDomainIdentifierAttributeSet

func NewSearchableItemWithUniqueIdentifierDomainIdentifierAttributeSet(uniqueIdentifier string, domainIdentifier string, attributeSet ISearchableItemAttributeSet) SearchableItem

Returns a searchable item associated with the specified identifier, domain identifier, and attribute set. Full Topic

func SearchableItemFrom

func SearchableItemFrom(ptr unsafe.Pointer) SearchableItem

func (SearchableItem) AttributeSet

func (s_ SearchableItem) AttributeSet() SearchableItemAttributeSet

The set of attributes that contain metadata associated with the item in a CSSearchableItemAttributeSet object. Full Topic

func (SearchableItem) DomainIdentifier

func (s_ SearchableItem) DomainIdentifier() string

An optional identifier that represents the domain or owner of the item. Full Topic

func (SearchableItem) ExpirationDate

func (s_ SearchableItem) ExpirationDate() foundation.Date

The date after which the searchable item should no longer exist. Full Topic

func (SearchableItem) Init

func (s_ SearchableItem) Init() SearchableItem

func (SearchableItem) InitWithUniqueIdentifierDomainIdentifierAttributeSet

func (s_ SearchableItem) InitWithUniqueIdentifierDomainIdentifierAttributeSet(uniqueIdentifier string, domainIdentifier string, attributeSet ISearchableItemAttributeSet) SearchableItem

func (SearchableItem) SetAttributeSet

func (s_ SearchableItem) SetAttributeSet(value ISearchableItemAttributeSet)

The set of attributes that contain metadata associated with the item in a CSSearchableItemAttributeSet object. Full Topic

func (SearchableItem) SetDomainIdentifier

func (s_ SearchableItem) SetDomainIdentifier(value string)

An optional identifier that represents the domain or owner of the item. Full Topic

func (SearchableItem) SetExpirationDate

func (s_ SearchableItem) SetExpirationDate(value foundation.IDate)

The date after which the searchable item should no longer exist. Full Topic

func (SearchableItem) SetUniqueIdentifier

func (s_ SearchableItem) SetUniqueIdentifier(value string)

The value that uniquely identifies the searchable item within your app. Full Topic

func (SearchableItem) UniqueIdentifier

func (s_ SearchableItem) UniqueIdentifier() string

The value that uniquely identifies the searchable item within your app. Full Topic

type SearchableItemAttributeSet

type SearchableItemAttributeSet struct {
	objc.Object
}

The set of properties to display for a searchable item. Full Topic

func NewSearchableItemAttributeSet

func NewSearchableItemAttributeSet() SearchableItemAttributeSet

func NewSearchableItemAttributeSetWithContentType

func NewSearchableItemAttributeSetWithContentType(contentType uti.IType) SearchableItemAttributeSet

Creates an attribute set for the specified content type. Full Topic

func SearchableItemAttributeSetFrom

func SearchableItemAttributeSetFrom(ptr unsafe.Pointer) SearchableItemAttributeSet

func (SearchableItemAttributeSet) AccountHandles

func (s_ SearchableItemAttributeSet) AccountHandles() []string

An array of the canonical handles for the account with which the message is associated. Full Topic

func (SearchableItemAttributeSet) AccountIdentifier

func (s_ SearchableItemAttributeSet) AccountIdentifier() string

The unique identifier for the account with which the message is associated, if any. Full Topic

func (SearchableItemAttributeSet) AcquisitionMake

func (s_ SearchableItemAttributeSet) AcquisitionMake() string

The manufacturer of the device that captured the image. Full Topic

func (SearchableItemAttributeSet) AcquisitionModel

func (s_ SearchableItemAttributeSet) AcquisitionModel() string

The model of the device that captured the image. Full Topic

func (SearchableItemAttributeSet) AddedDate

The date on which the item was moved into its current location. Full Topic

func (SearchableItemAttributeSet) AdditionalRecipients

func (s_ SearchableItemAttributeSet) AdditionalRecipients() []Person

An array of CSPerson objects representing the content of the Cc: field in an email message. Full Topic

func (SearchableItemAttributeSet) Album

The title for a collection of audio media. Full Topic

func (SearchableItemAttributeSet) AllDay

A value that indicates if the event covers an entire day. Full Topic

func (SearchableItemAttributeSet) AlternateNames

func (s_ SearchableItemAttributeSet) AlternateNames() []string

An array of localized strings that represent alternate display names for the item. Full Topic

func (SearchableItemAttributeSet) Altitude

The altitude of the item in meters above sea level, expressed using the WGS84 datum. Full Topic

func (SearchableItemAttributeSet) Aperture

The size of the lens aperture at the time the camera captured the image, as a log-scale APEX value. Full Topic

func (SearchableItemAttributeSet) Artist

func (s_ SearchableItemAttributeSet) Artist() string

The artist associated with the media. Full Topic

func (SearchableItemAttributeSet) Audiences

func (s_ SearchableItemAttributeSet) Audiences() []string

A class of entity for which the item is intended or useful. Full Topic

func (SearchableItemAttributeSet) AudioBitRate

func (s_ SearchableItemAttributeSet) AudioBitRate() foundation.Number

The audio bit rate of the media. Full Topic

func (SearchableItemAttributeSet) AudioChannelCount

func (s_ SearchableItemAttributeSet) AudioChannelCount() foundation.Number

The number of channels in the audio data that the file contains. Full Topic

func (SearchableItemAttributeSet) AudioEncodingApplication

func (s_ SearchableItemAttributeSet) AudioEncodingApplication() string

The name of the application that encoded the data the audio file contains. Full Topic

func (SearchableItemAttributeSet) AudioSampleRate

func (s_ SearchableItemAttributeSet) AudioSampleRate() foundation.Number

The sample rate of the audio data the file contains, as a float value representing Hz (audio frames per second), such as 44100.0 or 22254.54. Full Topic

func (SearchableItemAttributeSet) AudioTrackNumber

func (s_ SearchableItemAttributeSet) AudioTrackNumber() foundation.Number

The track number of a song or audio composition when part of an album. Full Topic

func (SearchableItemAttributeSet) AuthorAddresses

func (s_ SearchableItemAttributeSet) AuthorAddresses() []string

An array of addresses associated with the author of the message. Full Topic

func (SearchableItemAttributeSet) AuthorEmailAddresses

func (s_ SearchableItemAttributeSet) AuthorEmailAddresses() []string

An array of email addresses associated with the author of the message. Full Topic

func (SearchableItemAttributeSet) AuthorNames

func (s_ SearchableItemAttributeSet) AuthorNames() []string

An array of names representing the authors who have worked on the message. Full Topic

func (SearchableItemAttributeSet) Authors

func (s_ SearchableItemAttributeSet) Authors() []Person

An array of CSPerson objects representing the content of the From: field in an item. Full Topic

func (SearchableItemAttributeSet) BitsPerSample

func (s_ SearchableItemAttributeSet) BitsPerSample() foundation.Number

The number of bits per sample. Full Topic

func (SearchableItemAttributeSet) CameraOwner

func (s_ SearchableItemAttributeSet) CameraOwner() string

The owner of the camera that captured the image. Full Topic

func (SearchableItemAttributeSet) City

The city of the item’s origin according to guidelines that the provider establishes. Full Topic

func (SearchableItemAttributeSet) Codecs

func (s_ SearchableItemAttributeSet) Codecs() []string

The codecs used to encode/decode the media. Full Topic

func (SearchableItemAttributeSet) ColorSpace

func (s_ SearchableItemAttributeSet) ColorSpace() string

The color space model the image uses, such as RGB, CMYK, YUV, or YCbCr. Full Topic

func (SearchableItemAttributeSet) Comment

func (s_ SearchableItemAttributeSet) Comment() string

A comment related to the media file. Full Topic

func (SearchableItemAttributeSet) CompletionDate

func (s_ SearchableItemAttributeSet) CompletionDate() foundation.Date

The date on which the item was completed. Full Topic

func (SearchableItemAttributeSet) Composer

func (s_ SearchableItemAttributeSet) Composer() string

The composer of the song or audio composition that the audio file contains. Full Topic

func (SearchableItemAttributeSet) ContactKeywords

func (s_ SearchableItemAttributeSet) ContactKeywords() []string

A list of contacts who are associated with the content in some way, not including the author. Full Topic

func (SearchableItemAttributeSet) ContainerDisplayName

func (s_ SearchableItemAttributeSet) ContainerDisplayName() string

A localized string that specifies the name of a container to which the item belongs, suitable to display in the user interface. Full Topic

func (SearchableItemAttributeSet) ContainerIdentifier

func (s_ SearchableItemAttributeSet) ContainerIdentifier() string

The identifier of the container to which the item belongs. Full Topic

func (SearchableItemAttributeSet) ContainerOrder

func (s_ SearchableItemAttributeSet) ContainerOrder() foundation.Number

The order of the item within the container. Full Topic

func (SearchableItemAttributeSet) ContainerTitle

func (s_ SearchableItemAttributeSet) ContainerTitle() string

The title of the container to which the item belongs. Full Topic

func (SearchableItemAttributeSet) ContentCreationDate

func (s_ SearchableItemAttributeSet) ContentCreationDate() foundation.Date

The creation date of an edited or optimized version of the song or composition. Full Topic

func (SearchableItemAttributeSet) ContentDescription

func (s_ SearchableItemAttributeSet) ContentDescription() string

A description of the item’s content. Full Topic

func (SearchableItemAttributeSet) ContentModificationDate

func (s_ SearchableItemAttributeSet) ContentModificationDate() foundation.Date

The date on which the contents of the file was last modified. Full Topic

func (SearchableItemAttributeSet) ContentRating

func (s_ SearchableItemAttributeSet) ContentRating() foundation.Number

A value that indicates if the media contains explicit content. Full Topic

func (SearchableItemAttributeSet) ContentSources

func (s_ SearchableItemAttributeSet) ContentSources() []string

An array of sources from which the media was obtained. Full Topic

func (SearchableItemAttributeSet) ContentType

func (s_ SearchableItemAttributeSet) ContentType() string

The uniform type identifier (UTI) of the item. Full Topic

func (SearchableItemAttributeSet) ContentTypeTree

func (s_ SearchableItemAttributeSet) ContentTypeTree() []string

An attribute type that identifies a custom hierarchy of types to describe the attributes of your item. Full Topic

func (SearchableItemAttributeSet) ContentURL

func (s_ SearchableItemAttributeSet) ContentURL() foundation.URL

The file URL of the content to index. Full Topic

func (SearchableItemAttributeSet) Contributors

func (s_ SearchableItemAttributeSet) Contributors() []string

A list of people, organizations, or services that made contributions to the media content. Full Topic

func (SearchableItemAttributeSet) Copyright

func (s_ SearchableItemAttributeSet) Copyright() string

The copyright date of the content. Full Topic

func (SearchableItemAttributeSet) Country

func (s_ SearchableItemAttributeSet) Country() string

The full, publishable name of the country or region in which the intellectual property of the item was created, according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) Coverage

func (s_ SearchableItemAttributeSet) Coverage() []string

A list of descriptors that specify the extent or scope of the media. Full Topic

func (SearchableItemAttributeSet) Creator

func (s_ SearchableItemAttributeSet) Creator() string

The name of the app that created the content. Full Topic

func (SearchableItemAttributeSet) DarkThumbnailURL

func (s_ SearchableItemAttributeSet) DarkThumbnailURL() foundation.URL

The local file URL of the thumbnail image for the item when Dark Mode is active. Full Topic

func (SearchableItemAttributeSet) DeliveryType

func (s_ SearchableItemAttributeSet) DeliveryType() foundation.Number

The delivery type of the file. Full Topic

func (SearchableItemAttributeSet) Director

func (s_ SearchableItemAttributeSet) Director() string

The name of the director of the media (for example, a movie director). Full Topic

func (SearchableItemAttributeSet) DisplayName

func (s_ SearchableItemAttributeSet) DisplayName() string

A localized string that contains the name of the item, suitable to display in the user interface. Full Topic

func (SearchableItemAttributeSet) DomainIdentifier

func (s_ SearchableItemAttributeSet) DomainIdentifier() string

An identifier that represents the domain or owner of the item. Full Topic

func (SearchableItemAttributeSet) DownloadedDate

func (s_ SearchableItemAttributeSet) DownloadedDate() foundation.Date

The most recent date on which the file was downloaded or received. Full Topic

func (SearchableItemAttributeSet) DueDate

The date on which the item is due. Full Topic

func (SearchableItemAttributeSet) Duration

The duration (if appropriate) of the content of the file, in seconds. Full Topic

func (SearchableItemAttributeSet) EXIFGPSVersion

func (s_ SearchableItemAttributeSet) EXIFGPSVersion() string

The version of GPS Info IFD header that was used to generate the metadata for the image. Full Topic

func (SearchableItemAttributeSet) EXIFVersion

func (s_ SearchableItemAttributeSet) EXIFVersion() string

The version of the EXIF header that was used to generate the metadata for the image. Full Topic

func (SearchableItemAttributeSet) Editors

func (s_ SearchableItemAttributeSet) Editors() []string

A list of editors who have worked on the file. Full Topic

func (SearchableItemAttributeSet) EmailAddresses

func (s_ SearchableItemAttributeSet) EmailAddresses() []string

An array of email addresses associated with the message. Full Topic

func (SearchableItemAttributeSet) EmailHeaders

func (s_ SearchableItemAttributeSet) EmailHeaders() map[string][]objc.Object

A dictionary that contains all the headers of the message. Full Topic

func (SearchableItemAttributeSet) EncodingApplications

func (s_ SearchableItemAttributeSet) EncodingApplications() []string

The name of the apps that converted the original content into a PDF stream. Full Topic

func (SearchableItemAttributeSet) EndDate

The end date for the item. Full Topic

func (SearchableItemAttributeSet) ExposureMode

func (s_ SearchableItemAttributeSet) ExposureMode() foundation.Number

The mode the camera used for the exposure of the image. Full Topic

func (SearchableItemAttributeSet) ExposureProgram

func (s_ SearchableItemAttributeSet) ExposureProgram() string

The class of the program the camera used to set exposure when capturing the image. Full Topic

func (SearchableItemAttributeSet) ExposureTime

func (s_ SearchableItemAttributeSet) ExposureTime() foundation.Number

The time that the lens was open during exposure, in seconds. Full Topic

func (SearchableItemAttributeSet) ExposureTimeString

func (s_ SearchableItemAttributeSet) ExposureTimeString() string

The time that the lens was open during exposure, in a string, such as "1/250 seconds". Full Topic

func (SearchableItemAttributeSet) FNumber

The focal length of the lens, divided by the diameter of the aperture when the camera captured the image. Full Topic

func (SearchableItemAttributeSet) FileSize

The size of the document file. Full Topic

func (SearchableItemAttributeSet) FocalLength

func (s_ SearchableItemAttributeSet) FocalLength() foundation.Number

The actual focal length of the lens, in millimeters. Full Topic

func (SearchableItemAttributeSet) FontNames

func (s_ SearchableItemAttributeSet) FontNames() []string

An array of font names the document uses. Full Topic

func (SearchableItemAttributeSet) FullyFormattedAddress

func (s_ SearchableItemAttributeSet) FullyFormattedAddress() string

The fully formatted address of the item, received from MapKit. Full Topic

func (SearchableItemAttributeSet) GPSAreaInformation

func (s_ SearchableItemAttributeSet) GPSAreaInformation() string

Information about the GPS area. Full Topic

func (SearchableItemAttributeSet) GPSDOP

The GPS dilution of precision value. Full Topic

func (SearchableItemAttributeSet) GPSDateStamp

func (s_ SearchableItemAttributeSet) GPSDateStamp() foundation.Date

The date and time related to the GPS value. Full Topic

func (SearchableItemAttributeSet) GPSDestBearing

func (s_ SearchableItemAttributeSet) GPSDestBearing() foundation.Number

The bearing to the destination point. Full Topic

func (SearchableItemAttributeSet) GPSDestDistance

func (s_ SearchableItemAttributeSet) GPSDestDistance() foundation.Number

The distance to the destination point. Full Topic

func (SearchableItemAttributeSet) GPSDestLatitude

func (s_ SearchableItemAttributeSet) GPSDestLatitude() foundation.Number

The latitude of the destination point. Full Topic

func (SearchableItemAttributeSet) GPSDestLongitude

func (s_ SearchableItemAttributeSet) GPSDestLongitude() foundation.Number

The longitude of the destination point. Full Topic

func (SearchableItemAttributeSet) GPSDifferental

func (s_ SearchableItemAttributeSet) GPSDifferental() foundation.Number

The differential correction applied to the GPS receiver. Full Topic

func (SearchableItemAttributeSet) GPSMapDatum

func (s_ SearchableItemAttributeSet) GPSMapDatum() string

The geodetic data that the GPS receiver uses. Full Topic

func (SearchableItemAttributeSet) GPSMeasureMode

func (s_ SearchableItemAttributeSet) GPSMeasureMode() string

The measurement precision mode in use by the GPS receiver. Full Topic

func (SearchableItemAttributeSet) GPSProcessingMethod

func (s_ SearchableItemAttributeSet) GPSProcessingMethod() string

The location finding method that the GPS receiver uses. Full Topic

func (SearchableItemAttributeSet) GPSStatus

func (s_ SearchableItemAttributeSet) GPSStatus() string

The status of the GPS receiver. Full Topic

func (SearchableItemAttributeSet) GPSTrack

The direction of travel of the item in degrees from true north. Full Topic

func (SearchableItemAttributeSet) Genre

The genre of the media. Full Topic

func (SearchableItemAttributeSet) HTMLContentData

func (s_ SearchableItemAttributeSet) HTMLContentData() []byte

The HTML content of the document encoded as an NSData object representing a UTF-8 encoded string. Full Topic

func (SearchableItemAttributeSet) HasAlphaChannel

func (s_ SearchableItemAttributeSet) HasAlphaChannel() foundation.Number

Indicates if the image file has an alpha channel. Full Topic

func (SearchableItemAttributeSet) Headline

func (s_ SearchableItemAttributeSet) Headline() string

A publishable string that provides a synopsis of the contents of the item. Full Topic

func (SearchableItemAttributeSet) HiddenAdditionalRecipients

func (s_ SearchableItemAttributeSet) HiddenAdditionalRecipients() []Person

An array of CSPerson objects representing the content of the Bcc: field in an email message. Full Topic

func (SearchableItemAttributeSet) ISOSpeed

The ISO speed setting at the time the camera captured the image. Full Topic

func (SearchableItemAttributeSet) Identifier

func (s_ SearchableItemAttributeSet) Identifier() string

A formal identifier that references the document the item represents. Full Topic

func (SearchableItemAttributeSet) ImageDirection

func (s_ SearchableItemAttributeSet) ImageDirection() foundation.Number

The direction of the item's image in degrees from true north. Full Topic

func (SearchableItemAttributeSet) ImportantDates

func (s_ SearchableItemAttributeSet) ImportantDates() []foundation.Date

An array of important dates associated with the item. Full Topic

func (SearchableItemAttributeSet) Information

func (s_ SearchableItemAttributeSet) Information() string

Information about the media. Full Topic

func (SearchableItemAttributeSet) Init

func (SearchableItemAttributeSet) InitWithContentType

func (s_ SearchableItemAttributeSet) InitWithContentType(contentType uti.IType) SearchableItemAttributeSet

func (SearchableItemAttributeSet) InstantMessageAddresses

func (s_ SearchableItemAttributeSet) InstantMessageAddresses() []string

An array of instant message addresses for the message. Full Topic

func (SearchableItemAttributeSet) Instructions

func (s_ SearchableItemAttributeSet) Instructions() string

Instructions that concern the use of the item, such as an embargo or warning. Full Topic

func (SearchableItemAttributeSet) IsFlashOn

A value that indicates if the camera used a flash to capture the image. Full Topic

func (SearchableItemAttributeSet) IsFocalLength35mm

func (s_ SearchableItemAttributeSet) IsFocalLength35mm() foundation.Number

A value that indicates if the focal length is 35mm. Full Topic

func (SearchableItemAttributeSet) IsGeneralMIDISequence

func (s_ SearchableItemAttributeSet) IsGeneralMIDISequence() foundation.Number

A value that indicates whether the MIDI sequence the file contains is set up for use with a general MIDI device. Full Topic

func (SearchableItemAttributeSet) IsLikelyJunk

func (s_ SearchableItemAttributeSet) IsLikelyJunk() foundation.Number

A value that indicates if the message is likely to be considered junk. Full Topic

func (SearchableItemAttributeSet) IsLocal

A value that indicates if the media is local. Full Topic

func (SearchableItemAttributeSet) IsRedEyeOn

A value that indicates if the camera used red-eye reduction when capturing the image. Full Topic

func (SearchableItemAttributeSet) IsStreamable

func (s_ SearchableItemAttributeSet) IsStreamable() foundation.Number

A value that indicates if the content is prepared for streaming. Full Topic

func (SearchableItemAttributeSet) IsUserCreated

func (s_ SearchableItemAttributeSet) IsUserCreated() foundation.Number

A value that indicates the user created the item. Full Topic

func (SearchableItemAttributeSet) IsUserCurated

func (s_ SearchableItemAttributeSet) IsUserCurated() foundation.Number

A value that indicates the user selected the item. Full Topic

func (SearchableItemAttributeSet) IsUserOwned

func (s_ SearchableItemAttributeSet) IsUserOwned() foundation.Number

A value that indicates the user purchased or owns the item. Full Topic

func (SearchableItemAttributeSet) KeySignature

func (s_ SearchableItemAttributeSet) KeySignature() string

The musical key of the song or audio composition that the file contains, such as C, Dm, or F#m. Full Topic

func (SearchableItemAttributeSet) Keywords

func (s_ SearchableItemAttributeSet) Keywords() []string

An array of keywords associated with the item, such as work, birthday, important, and so on. Full Topic

func (SearchableItemAttributeSet) Kind

A description of the kind of document the item represents. Full Topic

func (SearchableItemAttributeSet) Languages

func (s_ SearchableItemAttributeSet) Languages() []string

A list of the included languages for the intellectual content of the media. Full Topic

func (SearchableItemAttributeSet) LastUsedDate

func (s_ SearchableItemAttributeSet) LastUsedDate() foundation.Date

The date on which the file was last used. Full Topic

func (SearchableItemAttributeSet) Latitude

The latitude of the item, in degrees north of the equator, expressed using the WGS84 datum. Full Topic

func (SearchableItemAttributeSet) LayerNames

func (s_ SearchableItemAttributeSet) LayerNames() []string

An array that contains the names of the various layers in the file. Full Topic

func (SearchableItemAttributeSet) LensModel

func (s_ SearchableItemAttributeSet) LensModel() string

The model of the lens that captured the image. Full Topic

func (SearchableItemAttributeSet) Longitude

The longitude of the item, in degrees east of the prime meridian, expressed using the WGS84 datum. Full Topic

func (SearchableItemAttributeSet) Lyricist

func (s_ SearchableItemAttributeSet) Lyricist() string

The lyricist or text writer for the song or audio composition that the file contains. Full Topic

func (SearchableItemAttributeSet) MailboxIdentifiers

func (s_ SearchableItemAttributeSet) MailboxIdentifiers() []string

An array of mailbox identifiers associated with the message. Full Topic

func (SearchableItemAttributeSet) MaxAperture

func (s_ SearchableItemAttributeSet) MaxAperture() foundation.Number

The smallest F number of the lens. Full Topic

func (SearchableItemAttributeSet) MediaTypes

func (s_ SearchableItemAttributeSet) MediaTypes() []string

The media types present in the content. Full Topic

func (SearchableItemAttributeSet) MetadataModificationDate

func (s_ SearchableItemAttributeSet) MetadataModificationDate() foundation.Date

The date on which the last metadata attribute was changed. Full Topic

func (SearchableItemAttributeSet) MeteringMode

func (s_ SearchableItemAttributeSet) MeteringMode() string

The metering mode. Full Topic

func (SearchableItemAttributeSet) MusicalGenre

func (s_ SearchableItemAttributeSet) MusicalGenre() string

The musical genre of the song or audio composition that the file contains, such as jazz, pop, rock, or classical. Full Topic

func (SearchableItemAttributeSet) MusicalInstrumentCategory

func (s_ SearchableItemAttributeSet) MusicalInstrumentCategory() string

The category of the instrument associated with the audio file. Full Topic

func (SearchableItemAttributeSet) MusicalInstrumentName

func (s_ SearchableItemAttributeSet) MusicalInstrumentName() string

The name of an instrument within the context of an instrument category. Full Topic

func (SearchableItemAttributeSet) NamedLocation

func (s_ SearchableItemAttributeSet) NamedLocation() string

The name of the location or point of interest associated with the item. Full Topic

func (SearchableItemAttributeSet) Organizations

func (s_ SearchableItemAttributeSet) Organizations() []string

A list of companies or organizations that created the content. Full Topic

func (SearchableItemAttributeSet) Orientation

func (s_ SearchableItemAttributeSet) Orientation() foundation.Number

The orientation of the data. Full Topic

func (SearchableItemAttributeSet) OriginalFormat

func (s_ SearchableItemAttributeSet) OriginalFormat() string

The original format of the media. Full Topic

func (SearchableItemAttributeSet) OriginalSource

func (s_ SearchableItemAttributeSet) OriginalSource() string

The original source of the media. Full Topic

func (SearchableItemAttributeSet) PageCount

The number of pages in the document. Full Topic

func (SearchableItemAttributeSet) PageHeight

The height of the document page, in points (72 points per inch). Full Topic

func (SearchableItemAttributeSet) PageWidth

The width of the document page, in points (72 points per inch). Full Topic

func (SearchableItemAttributeSet) Participants

func (s_ SearchableItemAttributeSet) Participants() []string

A list of people who are visible in an image or movie or written about in a document. Full Topic

func (SearchableItemAttributeSet) Path

The complete path to the item. Full Topic

func (SearchableItemAttributeSet) Performers

func (s_ SearchableItemAttributeSet) Performers() []string

A list of performers in the media. Full Topic

func (SearchableItemAttributeSet) PhoneNumbers

func (s_ SearchableItemAttributeSet) PhoneNumbers() []string

An array of phone numbers associated with the message. Full Topic

func (SearchableItemAttributeSet) PixelCount

The total number of pixels in the image. Full Topic

func (SearchableItemAttributeSet) PixelHeight

func (s_ SearchableItemAttributeSet) PixelHeight() foundation.Number

The height of the item, such as image or video frame height, in pixels. Full Topic

func (SearchableItemAttributeSet) PixelWidth

The width of the item, such as image or video frame width, in pixels. Full Topic

func (SearchableItemAttributeSet) PlayCount

A user-supplied play count for the media. Full Topic

func (SearchableItemAttributeSet) PostalCode

func (s_ SearchableItemAttributeSet) PostalCode() string

The postal code for the item according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) PrimaryRecipients

func (s_ SearchableItemAttributeSet) PrimaryRecipients() []Person

An array of CSPerson objects representing the content of the To: field in an email message. Full Topic

func (SearchableItemAttributeSet) Producer

func (s_ SearchableItemAttributeSet) Producer() string

The producer of the content. Full Topic

func (SearchableItemAttributeSet) ProfileName

func (s_ SearchableItemAttributeSet) ProfileName() string

The name of the color profile the camera used for the image. Full Topic

func (SearchableItemAttributeSet) Projects

func (s_ SearchableItemAttributeSet) Projects() []string

A list of projects of which this file is a part. Full Topic

func (SearchableItemAttributeSet) ProviderDataTypeIdentifiers

func (s_ SearchableItemAttributeSet) ProviderDataTypeIdentifiers() []string

An array of identifiers that corresponds to data representations the delegate provides. Full Topic

func (SearchableItemAttributeSet) ProviderFileTypeIdentifiers

func (s_ SearchableItemAttributeSet) ProviderFileTypeIdentifiers() []string

An array of identifiers that corresponds to file representations the delegate provides. Full Topic

func (SearchableItemAttributeSet) ProviderInPlaceFileTypeIdentifiers

func (s_ SearchableItemAttributeSet) ProviderInPlaceFileTypeIdentifiers() []string

An array of identifiers that corresponds to in-place file representations the delegate provides. Full Topic

func (SearchableItemAttributeSet) Publishers

func (s_ SearchableItemAttributeSet) Publishers() []string

A list of people, organizations, services, or other entities responsible for making the media available. Full Topic

func (SearchableItemAttributeSet) RankingHint

func (s_ SearchableItemAttributeSet) RankingHint() foundation.Number

A number that indicates the relative importance of the item among other items from the app. Full Topic

func (SearchableItemAttributeSet) Rating

The user-supplied rating of the media. Full Topic

func (SearchableItemAttributeSet) RatingDescription

func (s_ SearchableItemAttributeSet) RatingDescription() string

A description of the rating. Full Topic

func (SearchableItemAttributeSet) RecipientAddresses

func (s_ SearchableItemAttributeSet) RecipientAddresses() []string

An array of addresses associated with the recipients of the message. Full Topic

func (SearchableItemAttributeSet) RecipientEmailAddresses

func (s_ SearchableItemAttributeSet) RecipientEmailAddresses() []string

An array of email addresses associated with the recipient. Full Topic

func (SearchableItemAttributeSet) RecipientNames

func (s_ SearchableItemAttributeSet) RecipientNames() []string

An array of names representing the recipients of this message. Full Topic

func (SearchableItemAttributeSet) RecordingDate

func (s_ SearchableItemAttributeSet) RecordingDate() foundation.Date

The recording date of the song or composition. Full Topic

func (SearchableItemAttributeSet) RelatedUniqueIdentifier

func (s_ SearchableItemAttributeSet) RelatedUniqueIdentifier() string

The unique identifier for the item to which the activity is related. Full Topic

func (SearchableItemAttributeSet) ResolutionHeightDPI

func (s_ SearchableItemAttributeSet) ResolutionHeightDPI() foundation.Number

The resolution height of the image, in DPI. Full Topic

func (SearchableItemAttributeSet) ResolutionWidthDPI

func (s_ SearchableItemAttributeSet) ResolutionWidthDPI() foundation.Number

The resolution width of the image, in DPI. Full Topic

func (SearchableItemAttributeSet) Rights

func (s_ SearchableItemAttributeSet) Rights() string

A link to information about the rights held in and over the media. Full Topic

func (SearchableItemAttributeSet) Role

Indicates the role of the content creator. Full Topic

func (SearchableItemAttributeSet) SecurityMethod

func (s_ SearchableItemAttributeSet) SecurityMethod() string

The security method (a type of encryption) that protects the document file. Full Topic

func (SearchableItemAttributeSet) SetAccountHandles

func (s_ SearchableItemAttributeSet) SetAccountHandles(value []string)

An array of the canonical handles for the account with which the message is associated. Full Topic

func (SearchableItemAttributeSet) SetAccountIdentifier

func (s_ SearchableItemAttributeSet) SetAccountIdentifier(value string)

The unique identifier for the account with which the message is associated, if any. Full Topic

func (SearchableItemAttributeSet) SetAcquisitionMake

func (s_ SearchableItemAttributeSet) SetAcquisitionMake(value string)

The manufacturer of the device that captured the image. Full Topic

func (SearchableItemAttributeSet) SetAcquisitionModel

func (s_ SearchableItemAttributeSet) SetAcquisitionModel(value string)

The model of the device that captured the image. Full Topic

func (SearchableItemAttributeSet) SetAddedDate

func (s_ SearchableItemAttributeSet) SetAddedDate(value foundation.IDate)

The date on which the item was moved into its current location. Full Topic

func (SearchableItemAttributeSet) SetAdditionalRecipients

func (s_ SearchableItemAttributeSet) SetAdditionalRecipients(value []IPerson)

An array of CSPerson objects representing the content of the Cc: field in an email message. Full Topic

func (SearchableItemAttributeSet) SetAlbum

func (s_ SearchableItemAttributeSet) SetAlbum(value string)

The title for a collection of audio media. Full Topic

func (SearchableItemAttributeSet) SetAllDay

func (s_ SearchableItemAttributeSet) SetAllDay(value foundation.INumber)

A value that indicates if the event covers an entire day. Full Topic

func (SearchableItemAttributeSet) SetAlternateNames

func (s_ SearchableItemAttributeSet) SetAlternateNames(value []string)

An array of localized strings that represent alternate display names for the item. Full Topic

func (SearchableItemAttributeSet) SetAltitude

func (s_ SearchableItemAttributeSet) SetAltitude(value foundation.INumber)

The altitude of the item in meters above sea level, expressed using the WGS84 datum. Full Topic

func (SearchableItemAttributeSet) SetAperture

func (s_ SearchableItemAttributeSet) SetAperture(value foundation.INumber)

The size of the lens aperture at the time the camera captured the image, as a log-scale APEX value. Full Topic

func (SearchableItemAttributeSet) SetArtist

func (s_ SearchableItemAttributeSet) SetArtist(value string)

The artist associated with the media. Full Topic

func (SearchableItemAttributeSet) SetAudiences

func (s_ SearchableItemAttributeSet) SetAudiences(value []string)

A class of entity for which the item is intended or useful. Full Topic

func (SearchableItemAttributeSet) SetAudioBitRate

func (s_ SearchableItemAttributeSet) SetAudioBitRate(value foundation.INumber)

The audio bit rate of the media. Full Topic

func (SearchableItemAttributeSet) SetAudioChannelCount

func (s_ SearchableItemAttributeSet) SetAudioChannelCount(value foundation.INumber)

The number of channels in the audio data that the file contains. Full Topic

func (SearchableItemAttributeSet) SetAudioEncodingApplication

func (s_ SearchableItemAttributeSet) SetAudioEncodingApplication(value string)

The name of the application that encoded the data the audio file contains. Full Topic

func (SearchableItemAttributeSet) SetAudioSampleRate

func (s_ SearchableItemAttributeSet) SetAudioSampleRate(value foundation.INumber)

The sample rate of the audio data the file contains, as a float value representing Hz (audio frames per second), such as 44100.0 or 22254.54. Full Topic

func (SearchableItemAttributeSet) SetAudioTrackNumber

func (s_ SearchableItemAttributeSet) SetAudioTrackNumber(value foundation.INumber)

The track number of a song or audio composition when part of an album. Full Topic

func (SearchableItemAttributeSet) SetAuthorAddresses

func (s_ SearchableItemAttributeSet) SetAuthorAddresses(value []string)

An array of addresses associated with the author of the message. Full Topic

func (SearchableItemAttributeSet) SetAuthorEmailAddresses

func (s_ SearchableItemAttributeSet) SetAuthorEmailAddresses(value []string)

An array of email addresses associated with the author of the message. Full Topic

func (SearchableItemAttributeSet) SetAuthorNames

func (s_ SearchableItemAttributeSet) SetAuthorNames(value []string)

An array of names representing the authors who have worked on the message. Full Topic

func (SearchableItemAttributeSet) SetAuthors

func (s_ SearchableItemAttributeSet) SetAuthors(value []IPerson)

An array of CSPerson objects representing the content of the From: field in an item. Full Topic

func (SearchableItemAttributeSet) SetBitsPerSample

func (s_ SearchableItemAttributeSet) SetBitsPerSample(value foundation.INumber)

The number of bits per sample. Full Topic

func (SearchableItemAttributeSet) SetCameraOwner

func (s_ SearchableItemAttributeSet) SetCameraOwner(value string)

The owner of the camera that captured the image. Full Topic

func (SearchableItemAttributeSet) SetCity

func (s_ SearchableItemAttributeSet) SetCity(value string)

The city of the item’s origin according to guidelines that the provider establishes. Full Topic

func (SearchableItemAttributeSet) SetCodecs

func (s_ SearchableItemAttributeSet) SetCodecs(value []string)

The codecs used to encode/decode the media. Full Topic

func (SearchableItemAttributeSet) SetColorSpace

func (s_ SearchableItemAttributeSet) SetColorSpace(value string)

The color space model the image uses, such as RGB, CMYK, YUV, or YCbCr. Full Topic

func (SearchableItemAttributeSet) SetComment

func (s_ SearchableItemAttributeSet) SetComment(value string)

A comment related to the media file. Full Topic

func (SearchableItemAttributeSet) SetCompletionDate

func (s_ SearchableItemAttributeSet) SetCompletionDate(value foundation.IDate)

The date on which the item was completed. Full Topic

func (SearchableItemAttributeSet) SetComposer

func (s_ SearchableItemAttributeSet) SetComposer(value string)

The composer of the song or audio composition that the audio file contains. Full Topic

func (SearchableItemAttributeSet) SetContactKeywords

func (s_ SearchableItemAttributeSet) SetContactKeywords(value []string)

A list of contacts who are associated with the content in some way, not including the author. Full Topic

func (SearchableItemAttributeSet) SetContainerDisplayName

func (s_ SearchableItemAttributeSet) SetContainerDisplayName(value string)

A localized string that specifies the name of a container to which the item belongs, suitable to display in the user interface. Full Topic

func (SearchableItemAttributeSet) SetContainerIdentifier

func (s_ SearchableItemAttributeSet) SetContainerIdentifier(value string)

The identifier of the container to which the item belongs. Full Topic

func (SearchableItemAttributeSet) SetContainerOrder

func (s_ SearchableItemAttributeSet) SetContainerOrder(value foundation.INumber)

The order of the item within the container. Full Topic

func (SearchableItemAttributeSet) SetContainerTitle

func (s_ SearchableItemAttributeSet) SetContainerTitle(value string)

The title of the container to which the item belongs. Full Topic

func (SearchableItemAttributeSet) SetContentCreationDate

func (s_ SearchableItemAttributeSet) SetContentCreationDate(value foundation.IDate)

The creation date of an edited or optimized version of the song or composition. Full Topic

func (SearchableItemAttributeSet) SetContentDescription

func (s_ SearchableItemAttributeSet) SetContentDescription(value string)

A description of the item’s content. Full Topic

func (SearchableItemAttributeSet) SetContentModificationDate

func (s_ SearchableItemAttributeSet) SetContentModificationDate(value foundation.IDate)

The date on which the contents of the file was last modified. Full Topic

func (SearchableItemAttributeSet) SetContentRating

func (s_ SearchableItemAttributeSet) SetContentRating(value foundation.INumber)

A value that indicates if the media contains explicit content. Full Topic

func (SearchableItemAttributeSet) SetContentSources

func (s_ SearchableItemAttributeSet) SetContentSources(value []string)

An array of sources from which the media was obtained. Full Topic

func (SearchableItemAttributeSet) SetContentType

func (s_ SearchableItemAttributeSet) SetContentType(value string)

The uniform type identifier (UTI) of the item. Full Topic

func (SearchableItemAttributeSet) SetContentTypeTree

func (s_ SearchableItemAttributeSet) SetContentTypeTree(value []string)

An attribute type that identifies a custom hierarchy of types to describe the attributes of your item. Full Topic

func (SearchableItemAttributeSet) SetContentURL

func (s_ SearchableItemAttributeSet) SetContentURL(value foundation.IURL)

The file URL of the content to index. Full Topic

func (SearchableItemAttributeSet) SetContributors

func (s_ SearchableItemAttributeSet) SetContributors(value []string)

A list of people, organizations, or services that made contributions to the media content. Full Topic

func (SearchableItemAttributeSet) SetCopyright

func (s_ SearchableItemAttributeSet) SetCopyright(value string)

The copyright date of the content. Full Topic

func (SearchableItemAttributeSet) SetCountry

func (s_ SearchableItemAttributeSet) SetCountry(value string)

The full, publishable name of the country or region in which the intellectual property of the item was created, according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) SetCoverage

func (s_ SearchableItemAttributeSet) SetCoverage(value []string)

A list of descriptors that specify the extent or scope of the media. Full Topic

func (SearchableItemAttributeSet) SetCreator

func (s_ SearchableItemAttributeSet) SetCreator(value string)

The name of the app that created the content. Full Topic

func (SearchableItemAttributeSet) SetDarkThumbnailURL

func (s_ SearchableItemAttributeSet) SetDarkThumbnailURL(value foundation.IURL)

The local file URL of the thumbnail image for the item when Dark Mode is active. Full Topic

func (SearchableItemAttributeSet) SetDeliveryType

func (s_ SearchableItemAttributeSet) SetDeliveryType(value foundation.INumber)

The delivery type of the file. Full Topic

func (SearchableItemAttributeSet) SetDirector

func (s_ SearchableItemAttributeSet) SetDirector(value string)

The name of the director of the media (for example, a movie director). Full Topic

func (SearchableItemAttributeSet) SetDisplayName

func (s_ SearchableItemAttributeSet) SetDisplayName(value string)

A localized string that contains the name of the item, suitable to display in the user interface. Full Topic

func (SearchableItemAttributeSet) SetDomainIdentifier

func (s_ SearchableItemAttributeSet) SetDomainIdentifier(value string)

An identifier that represents the domain or owner of the item. Full Topic

func (SearchableItemAttributeSet) SetDownloadedDate

func (s_ SearchableItemAttributeSet) SetDownloadedDate(value foundation.IDate)

The most recent date on which the file was downloaded or received. Full Topic

func (SearchableItemAttributeSet) SetDueDate

func (s_ SearchableItemAttributeSet) SetDueDate(value foundation.IDate)

The date on which the item is due. Full Topic

func (SearchableItemAttributeSet) SetDuration

func (s_ SearchableItemAttributeSet) SetDuration(value foundation.INumber)

The duration (if appropriate) of the content of the file, in seconds. Full Topic

func (SearchableItemAttributeSet) SetEXIFGPSVersion

func (s_ SearchableItemAttributeSet) SetEXIFGPSVersion(value string)

The version of GPS Info IFD header that was used to generate the metadata for the image. Full Topic

func (SearchableItemAttributeSet) SetEXIFVersion

func (s_ SearchableItemAttributeSet) SetEXIFVersion(value string)

The version of the EXIF header that was used to generate the metadata for the image. Full Topic

func (SearchableItemAttributeSet) SetEditors

func (s_ SearchableItemAttributeSet) SetEditors(value []string)

A list of editors who have worked on the file. Full Topic

func (SearchableItemAttributeSet) SetEmailAddresses

func (s_ SearchableItemAttributeSet) SetEmailAddresses(value []string)

An array of email addresses associated with the message. Full Topic

func (SearchableItemAttributeSet) SetEmailHeaders

func (s_ SearchableItemAttributeSet) SetEmailHeaders(value map[string][]objc.IObject)

A dictionary that contains all the headers of the message. Full Topic

func (SearchableItemAttributeSet) SetEncodingApplications

func (s_ SearchableItemAttributeSet) SetEncodingApplications(value []string)

The name of the apps that converted the original content into a PDF stream. Full Topic

func (SearchableItemAttributeSet) SetEndDate

func (s_ SearchableItemAttributeSet) SetEndDate(value foundation.IDate)

The end date for the item. Full Topic

func (SearchableItemAttributeSet) SetExposureMode

func (s_ SearchableItemAttributeSet) SetExposureMode(value foundation.INumber)

The mode the camera used for the exposure of the image. Full Topic

func (SearchableItemAttributeSet) SetExposureProgram

func (s_ SearchableItemAttributeSet) SetExposureProgram(value string)

The class of the program the camera used to set exposure when capturing the image. Full Topic

func (SearchableItemAttributeSet) SetExposureTime

func (s_ SearchableItemAttributeSet) SetExposureTime(value foundation.INumber)

The time that the lens was open during exposure, in seconds. Full Topic

func (SearchableItemAttributeSet) SetExposureTimeString

func (s_ SearchableItemAttributeSet) SetExposureTimeString(value string)

The time that the lens was open during exposure, in a string, such as "1/250 seconds". Full Topic

func (SearchableItemAttributeSet) SetFNumber

func (s_ SearchableItemAttributeSet) SetFNumber(value foundation.INumber)

The focal length of the lens, divided by the diameter of the aperture when the camera captured the image. Full Topic

func (SearchableItemAttributeSet) SetFileSize

func (s_ SearchableItemAttributeSet) SetFileSize(value foundation.INumber)

The size of the document file. Full Topic

func (SearchableItemAttributeSet) SetFlashOn

func (s_ SearchableItemAttributeSet) SetFlashOn(value foundation.INumber)

A value that indicates if the camera used a flash to capture the image. Full Topic

func (SearchableItemAttributeSet) SetFocalLength

func (s_ SearchableItemAttributeSet) SetFocalLength(value foundation.INumber)

The actual focal length of the lens, in millimeters. Full Topic

func (SearchableItemAttributeSet) SetFocalLength35mm

func (s_ SearchableItemAttributeSet) SetFocalLength35mm(value foundation.INumber)

A value that indicates if the focal length is 35mm. Full Topic

func (SearchableItemAttributeSet) SetFontNames

func (s_ SearchableItemAttributeSet) SetFontNames(value []string)

An array of font names the document uses. Full Topic

func (SearchableItemAttributeSet) SetFullyFormattedAddress

func (s_ SearchableItemAttributeSet) SetFullyFormattedAddress(value string)

The fully formatted address of the item, received from MapKit. Full Topic

func (SearchableItemAttributeSet) SetGPSAreaInformation

func (s_ SearchableItemAttributeSet) SetGPSAreaInformation(value string)

Information about the GPS area. Full Topic

func (SearchableItemAttributeSet) SetGPSDOP

func (s_ SearchableItemAttributeSet) SetGPSDOP(value foundation.INumber)

The GPS dilution of precision value. Full Topic

func (SearchableItemAttributeSet) SetGPSDateStamp

func (s_ SearchableItemAttributeSet) SetGPSDateStamp(value foundation.IDate)

The date and time related to the GPS value. Full Topic

func (SearchableItemAttributeSet) SetGPSDestBearing

func (s_ SearchableItemAttributeSet) SetGPSDestBearing(value foundation.INumber)

The bearing to the destination point. Full Topic

func (SearchableItemAttributeSet) SetGPSDestDistance

func (s_ SearchableItemAttributeSet) SetGPSDestDistance(value foundation.INumber)

The distance to the destination point. Full Topic

func (SearchableItemAttributeSet) SetGPSDestLatitude

func (s_ SearchableItemAttributeSet) SetGPSDestLatitude(value foundation.INumber)

The latitude of the destination point. Full Topic

func (SearchableItemAttributeSet) SetGPSDestLongitude

func (s_ SearchableItemAttributeSet) SetGPSDestLongitude(value foundation.INumber)

The longitude of the destination point. Full Topic

func (SearchableItemAttributeSet) SetGPSDifferental

func (s_ SearchableItemAttributeSet) SetGPSDifferental(value foundation.INumber)

The differential correction applied to the GPS receiver. Full Topic

func (SearchableItemAttributeSet) SetGPSMapDatum

func (s_ SearchableItemAttributeSet) SetGPSMapDatum(value string)

The geodetic data that the GPS receiver uses. Full Topic

func (SearchableItemAttributeSet) SetGPSMeasureMode

func (s_ SearchableItemAttributeSet) SetGPSMeasureMode(value string)

The measurement precision mode in use by the GPS receiver. Full Topic

func (SearchableItemAttributeSet) SetGPSProcessingMethod

func (s_ SearchableItemAttributeSet) SetGPSProcessingMethod(value string)

The location finding method that the GPS receiver uses. Full Topic

func (SearchableItemAttributeSet) SetGPSStatus

func (s_ SearchableItemAttributeSet) SetGPSStatus(value string)

The status of the GPS receiver. Full Topic

func (SearchableItemAttributeSet) SetGPSTrack

func (s_ SearchableItemAttributeSet) SetGPSTrack(value foundation.INumber)

The direction of travel of the item in degrees from true north. Full Topic

func (SearchableItemAttributeSet) SetGeneralMIDISequence

func (s_ SearchableItemAttributeSet) SetGeneralMIDISequence(value foundation.INumber)

A value that indicates whether the MIDI sequence the file contains is set up for use with a general MIDI device. Full Topic

func (SearchableItemAttributeSet) SetGenre

func (s_ SearchableItemAttributeSet) SetGenre(value string)

The genre of the media. Full Topic

func (SearchableItemAttributeSet) SetHTMLContentData

func (s_ SearchableItemAttributeSet) SetHTMLContentData(value []byte)

The HTML content of the document encoded as an NSData object representing a UTF-8 encoded string. Full Topic

func (SearchableItemAttributeSet) SetHasAlphaChannel

func (s_ SearchableItemAttributeSet) SetHasAlphaChannel(value foundation.INumber)

Indicates if the image file has an alpha channel. Full Topic

func (SearchableItemAttributeSet) SetHeadline

func (s_ SearchableItemAttributeSet) SetHeadline(value string)

A publishable string that provides a synopsis of the contents of the item. Full Topic

func (SearchableItemAttributeSet) SetHiddenAdditionalRecipients

func (s_ SearchableItemAttributeSet) SetHiddenAdditionalRecipients(value []IPerson)

An array of CSPerson objects representing the content of the Bcc: field in an email message. Full Topic

func (SearchableItemAttributeSet) SetISOSpeed

func (s_ SearchableItemAttributeSet) SetISOSpeed(value foundation.INumber)

The ISO speed setting at the time the camera captured the image. Full Topic

func (SearchableItemAttributeSet) SetIdentifier

func (s_ SearchableItemAttributeSet) SetIdentifier(value string)

A formal identifier that references the document the item represents. Full Topic

func (SearchableItemAttributeSet) SetImageDirection

func (s_ SearchableItemAttributeSet) SetImageDirection(value foundation.INumber)

The direction of the item's image in degrees from true north. Full Topic

func (SearchableItemAttributeSet) SetImportantDates

func (s_ SearchableItemAttributeSet) SetImportantDates(value []foundation.IDate)

An array of important dates associated with the item. Full Topic

func (SearchableItemAttributeSet) SetInformation

func (s_ SearchableItemAttributeSet) SetInformation(value string)

Information about the media. Full Topic

func (SearchableItemAttributeSet) SetInstantMessageAddresses

func (s_ SearchableItemAttributeSet) SetInstantMessageAddresses(value []string)

An array of instant message addresses for the message. Full Topic

func (SearchableItemAttributeSet) SetInstructions

func (s_ SearchableItemAttributeSet) SetInstructions(value string)

Instructions that concern the use of the item, such as an embargo or warning. Full Topic

func (SearchableItemAttributeSet) SetKeySignature

func (s_ SearchableItemAttributeSet) SetKeySignature(value string)

The musical key of the song or audio composition that the file contains, such as C, Dm, or F#m. Full Topic

func (SearchableItemAttributeSet) SetKeywords

func (s_ SearchableItemAttributeSet) SetKeywords(value []string)

An array of keywords associated with the item, such as work, birthday, important, and so on. Full Topic

func (SearchableItemAttributeSet) SetKind

func (s_ SearchableItemAttributeSet) SetKind(value string)

A description of the kind of document the item represents. Full Topic

func (SearchableItemAttributeSet) SetLanguages

func (s_ SearchableItemAttributeSet) SetLanguages(value []string)

A list of the included languages for the intellectual content of the media. Full Topic

func (SearchableItemAttributeSet) SetLastUsedDate

func (s_ SearchableItemAttributeSet) SetLastUsedDate(value foundation.IDate)

The date on which the file was last used. Full Topic

func (SearchableItemAttributeSet) SetLatitude

func (s_ SearchableItemAttributeSet) SetLatitude(value foundation.INumber)

The latitude of the item, in degrees north of the equator, expressed using the WGS84 datum. Full Topic

func (SearchableItemAttributeSet) SetLayerNames

func (s_ SearchableItemAttributeSet) SetLayerNames(value []string)

An array that contains the names of the various layers in the file. Full Topic

func (SearchableItemAttributeSet) SetLensModel

func (s_ SearchableItemAttributeSet) SetLensModel(value string)

The model of the lens that captured the image. Full Topic

func (SearchableItemAttributeSet) SetLikelyJunk

func (s_ SearchableItemAttributeSet) SetLikelyJunk(value foundation.INumber)

A value that indicates if the message is likely to be considered junk. Full Topic

func (SearchableItemAttributeSet) SetLocal

func (s_ SearchableItemAttributeSet) SetLocal(value foundation.INumber)

A value that indicates if the media is local. Full Topic

func (SearchableItemAttributeSet) SetLongitude

func (s_ SearchableItemAttributeSet) SetLongitude(value foundation.INumber)

The longitude of the item, in degrees east of the prime meridian, expressed using the WGS84 datum. Full Topic

func (SearchableItemAttributeSet) SetLyricist

func (s_ SearchableItemAttributeSet) SetLyricist(value string)

The lyricist or text writer for the song or audio composition that the file contains. Full Topic

func (SearchableItemAttributeSet) SetMailboxIdentifiers

func (s_ SearchableItemAttributeSet) SetMailboxIdentifiers(value []string)

An array of mailbox identifiers associated with the message. Full Topic

func (SearchableItemAttributeSet) SetMaxAperture

func (s_ SearchableItemAttributeSet) SetMaxAperture(value foundation.INumber)

The smallest F number of the lens. Full Topic

func (SearchableItemAttributeSet) SetMediaTypes

func (s_ SearchableItemAttributeSet) SetMediaTypes(value []string)

The media types present in the content. Full Topic

func (SearchableItemAttributeSet) SetMetadataModificationDate

func (s_ SearchableItemAttributeSet) SetMetadataModificationDate(value foundation.IDate)

The date on which the last metadata attribute was changed. Full Topic

func (SearchableItemAttributeSet) SetMeteringMode

func (s_ SearchableItemAttributeSet) SetMeteringMode(value string)

The metering mode. Full Topic

func (SearchableItemAttributeSet) SetMusicalGenre

func (s_ SearchableItemAttributeSet) SetMusicalGenre(value string)

The musical genre of the song or audio composition that the file contains, such as jazz, pop, rock, or classical. Full Topic

func (SearchableItemAttributeSet) SetMusicalInstrumentCategory

func (s_ SearchableItemAttributeSet) SetMusicalInstrumentCategory(value string)

The category of the instrument associated with the audio file. Full Topic

func (SearchableItemAttributeSet) SetMusicalInstrumentName

func (s_ SearchableItemAttributeSet) SetMusicalInstrumentName(value string)

The name of an instrument within the context of an instrument category. Full Topic

func (SearchableItemAttributeSet) SetNamedLocation

func (s_ SearchableItemAttributeSet) SetNamedLocation(value string)

The name of the location or point of interest associated with the item. Full Topic

func (SearchableItemAttributeSet) SetOrganizations

func (s_ SearchableItemAttributeSet) SetOrganizations(value []string)

A list of companies or organizations that created the content. Full Topic

func (SearchableItemAttributeSet) SetOrientation

func (s_ SearchableItemAttributeSet) SetOrientation(value foundation.INumber)

The orientation of the data. Full Topic

func (SearchableItemAttributeSet) SetOriginalFormat

func (s_ SearchableItemAttributeSet) SetOriginalFormat(value string)

The original format of the media. Full Topic

func (SearchableItemAttributeSet) SetOriginalSource

func (s_ SearchableItemAttributeSet) SetOriginalSource(value string)

The original source of the media. Full Topic

func (SearchableItemAttributeSet) SetPageCount

func (s_ SearchableItemAttributeSet) SetPageCount(value foundation.INumber)

The number of pages in the document. Full Topic

func (SearchableItemAttributeSet) SetPageHeight

func (s_ SearchableItemAttributeSet) SetPageHeight(value foundation.INumber)

The height of the document page, in points (72 points per inch). Full Topic

func (SearchableItemAttributeSet) SetPageWidth

func (s_ SearchableItemAttributeSet) SetPageWidth(value foundation.INumber)

The width of the document page, in points (72 points per inch). Full Topic

func (SearchableItemAttributeSet) SetParticipants

func (s_ SearchableItemAttributeSet) SetParticipants(value []string)

A list of people who are visible in an image or movie or written about in a document. Full Topic

func (SearchableItemAttributeSet) SetPath

func (s_ SearchableItemAttributeSet) SetPath(value string)

The complete path to the item. Full Topic

func (SearchableItemAttributeSet) SetPerformers

func (s_ SearchableItemAttributeSet) SetPerformers(value []string)

A list of performers in the media. Full Topic

func (SearchableItemAttributeSet) SetPhoneNumbers

func (s_ SearchableItemAttributeSet) SetPhoneNumbers(value []string)

An array of phone numbers associated with the message. Full Topic

func (SearchableItemAttributeSet) SetPixelCount

func (s_ SearchableItemAttributeSet) SetPixelCount(value foundation.INumber)

The total number of pixels in the image. Full Topic

func (SearchableItemAttributeSet) SetPixelHeight

func (s_ SearchableItemAttributeSet) SetPixelHeight(value foundation.INumber)

The height of the item, such as image or video frame height, in pixels. Full Topic

func (SearchableItemAttributeSet) SetPixelWidth

func (s_ SearchableItemAttributeSet) SetPixelWidth(value foundation.INumber)

The width of the item, such as image or video frame width, in pixels. Full Topic

func (SearchableItemAttributeSet) SetPlayCount

func (s_ SearchableItemAttributeSet) SetPlayCount(value foundation.INumber)

A user-supplied play count for the media. Full Topic

func (SearchableItemAttributeSet) SetPostalCode

func (s_ SearchableItemAttributeSet) SetPostalCode(value string)

The postal code for the item according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) SetPrimaryRecipients

func (s_ SearchableItemAttributeSet) SetPrimaryRecipients(value []IPerson)

An array of CSPerson objects representing the content of the To: field in an email message. Full Topic

func (SearchableItemAttributeSet) SetProducer

func (s_ SearchableItemAttributeSet) SetProducer(value string)

The producer of the content. Full Topic

func (SearchableItemAttributeSet) SetProfileName

func (s_ SearchableItemAttributeSet) SetProfileName(value string)

The name of the color profile the camera used for the image. Full Topic

func (SearchableItemAttributeSet) SetProjects

func (s_ SearchableItemAttributeSet) SetProjects(value []string)

A list of projects of which this file is a part. Full Topic

func (SearchableItemAttributeSet) SetProviderDataTypeIdentifiers

func (s_ SearchableItemAttributeSet) SetProviderDataTypeIdentifiers(value []string)

An array of identifiers that corresponds to data representations the delegate provides. Full Topic

func (SearchableItemAttributeSet) SetProviderFileTypeIdentifiers

func (s_ SearchableItemAttributeSet) SetProviderFileTypeIdentifiers(value []string)

An array of identifiers that corresponds to file representations the delegate provides. Full Topic

func (SearchableItemAttributeSet) SetProviderInPlaceFileTypeIdentifiers

func (s_ SearchableItemAttributeSet) SetProviderInPlaceFileTypeIdentifiers(value []string)

An array of identifiers that corresponds to in-place file representations the delegate provides. Full Topic

func (SearchableItemAttributeSet) SetPublishers

func (s_ SearchableItemAttributeSet) SetPublishers(value []string)

A list of people, organizations, services, or other entities responsible for making the media available. Full Topic

func (SearchableItemAttributeSet) SetRankingHint

func (s_ SearchableItemAttributeSet) SetRankingHint(value foundation.INumber)

A number that indicates the relative importance of the item among other items from the app. Full Topic

func (SearchableItemAttributeSet) SetRating

func (s_ SearchableItemAttributeSet) SetRating(value foundation.INumber)

The user-supplied rating of the media. Full Topic

func (SearchableItemAttributeSet) SetRatingDescription

func (s_ SearchableItemAttributeSet) SetRatingDescription(value string)

A description of the rating. Full Topic

func (SearchableItemAttributeSet) SetRecipientAddresses

func (s_ SearchableItemAttributeSet) SetRecipientAddresses(value []string)

An array of addresses associated with the recipients of the message. Full Topic

func (SearchableItemAttributeSet) SetRecipientEmailAddresses

func (s_ SearchableItemAttributeSet) SetRecipientEmailAddresses(value []string)

An array of email addresses associated with the recipient. Full Topic

func (SearchableItemAttributeSet) SetRecipientNames

func (s_ SearchableItemAttributeSet) SetRecipientNames(value []string)

An array of names representing the recipients of this message. Full Topic

func (SearchableItemAttributeSet) SetRecordingDate

func (s_ SearchableItemAttributeSet) SetRecordingDate(value foundation.IDate)

The recording date of the song or composition. Full Topic

func (SearchableItemAttributeSet) SetRedEyeOn

func (s_ SearchableItemAttributeSet) SetRedEyeOn(value foundation.INumber)

A value that indicates if the camera used red-eye reduction when capturing the image. Full Topic

func (SearchableItemAttributeSet) SetRelatedUniqueIdentifier

func (s_ SearchableItemAttributeSet) SetRelatedUniqueIdentifier(value string)

The unique identifier for the item to which the activity is related. Full Topic

func (SearchableItemAttributeSet) SetResolutionHeightDPI

func (s_ SearchableItemAttributeSet) SetResolutionHeightDPI(value foundation.INumber)

The resolution height of the image, in DPI. Full Topic

func (SearchableItemAttributeSet) SetResolutionWidthDPI

func (s_ SearchableItemAttributeSet) SetResolutionWidthDPI(value foundation.INumber)

The resolution width of the image, in DPI. Full Topic

func (SearchableItemAttributeSet) SetRights

func (s_ SearchableItemAttributeSet) SetRights(value string)

A link to information about the rights held in and over the media. Full Topic

func (SearchableItemAttributeSet) SetRole

func (s_ SearchableItemAttributeSet) SetRole(value string)

Indicates the role of the content creator. Full Topic

func (SearchableItemAttributeSet) SetSecurityMethod

func (s_ SearchableItemAttributeSet) SetSecurityMethod(value string)

The security method (a type of encryption) that protects the document file. Full Topic

func (SearchableItemAttributeSet) SetSpeed

func (s_ SearchableItemAttributeSet) SetSpeed(value foundation.INumber)

The speed of the item, in kilometers per hour. Full Topic

func (SearchableItemAttributeSet) SetStartDate

func (s_ SearchableItemAttributeSet) SetStartDate(value foundation.IDate)

The start date for the item. Full Topic

func (SearchableItemAttributeSet) SetStateOrProvince

func (s_ SearchableItemAttributeSet) SetStateOrProvince(value string)

The province or state of origin according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) SetStreamable

func (s_ SearchableItemAttributeSet) SetStreamable(value foundation.INumber)

A value that indicates if the content is prepared for streaming. Full Topic

func (SearchableItemAttributeSet) SetSubThoroughfare

func (s_ SearchableItemAttributeSet) SetSubThoroughfare(value string)

The sublocation, such as a street number, for the item according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) SetSubject

func (s_ SearchableItemAttributeSet) SetSubject(value string)

The subject of the document. Full Topic

func (SearchableItemAttributeSet) SetSupportsNavigation

func (s_ SearchableItemAttributeSet) SetSupportsNavigation(value foundation.INumber)

A value that indicates whether the item contains information sufficient to provide navigation to the location it represents. Full Topic

func (SearchableItemAttributeSet) SetSupportsPhoneCall

func (s_ SearchableItemAttributeSet) SetSupportsPhoneCall(value foundation.INumber)

A value that indicates whether the item contains information sufficient to allow a phone call to a number associated with the item. Full Topic

func (SearchableItemAttributeSet) SetTempo

func (s_ SearchableItemAttributeSet) SetTempo(value foundation.INumber)

The tempo of the music that the audio file contains, in beats per minute. Full Topic

func (SearchableItemAttributeSet) SetTextContent

func (s_ SearchableItemAttributeSet) SetTextContent(value string)

The textual content of the message. Full Topic

func (SearchableItemAttributeSet) SetTheme

func (s_ SearchableItemAttributeSet) SetTheme(value string)

The theme of the document. Full Topic

func (SearchableItemAttributeSet) SetThoroughfare

func (s_ SearchableItemAttributeSet) SetThoroughfare(value string)

The thoroughfare, such as a street name, associated with the location for the item according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) SetThumbnailData

func (s_ SearchableItemAttributeSet) SetThumbnailData(value []byte)

Image data that represents the thumbnail of the item. Full Topic

func (SearchableItemAttributeSet) SetThumbnailURL

func (s_ SearchableItemAttributeSet) SetThumbnailURL(value foundation.IURL)

The local file URL of the thumbnail image for the item. Full Topic

func (SearchableItemAttributeSet) SetTimeSignature

func (s_ SearchableItemAttributeSet) SetTimeSignature(value string)

The time signature of the musical composition that the audio or MIDI file contains, in a string, such as "4/4" or "7/8". Full Topic

func (SearchableItemAttributeSet) SetTimestamp

func (s_ SearchableItemAttributeSet) SetTimestamp(value foundation.IDate)

The timestamp on the item. Full Topic

func (SearchableItemAttributeSet) SetTitle

func (s_ SearchableItemAttributeSet) SetTitle(value string)

The title of the item. Full Topic

func (SearchableItemAttributeSet) SetTotalBitRate

func (s_ SearchableItemAttributeSet) SetTotalBitRate(value foundation.INumber)

The total bit rate of the media, combining audio and video. Full Topic

func (SearchableItemAttributeSet) SetURL

func (s_ SearchableItemAttributeSet) SetURL(value foundation.IURL)

The URL associated with the media. Full Topic

func (SearchableItemAttributeSet) SetUserCreated

func (s_ SearchableItemAttributeSet) SetUserCreated(value foundation.INumber)

A value that indicates the user created the item. Full Topic

func (SearchableItemAttributeSet) SetUserCurated

func (s_ SearchableItemAttributeSet) SetUserCurated(value foundation.INumber)

A value that indicates the user selected the item. Full Topic

func (SearchableItemAttributeSet) SetUserOwned

func (s_ SearchableItemAttributeSet) SetUserOwned(value foundation.INumber)

A value that indicates the user purchased or owns the item. Full Topic

func (SearchableItemAttributeSet) SetValueForCustomKey

func (s_ SearchableItemAttributeSet) SetValueForCustomKey(value objc.IObject, key ICustomAttributeKey)

Sets the value for a custom attribute key. Full Topic

func (SearchableItemAttributeSet) SetVersion

func (s_ SearchableItemAttributeSet) SetVersion(value string)

A version string associated with the file. Full Topic

func (SearchableItemAttributeSet) SetVideoBitRate

func (s_ SearchableItemAttributeSet) SetVideoBitRate(value foundation.INumber)

The video bit rate of the media. Full Topic

func (SearchableItemAttributeSet) SetWeakRelatedUniqueIdentifier

func (s_ SearchableItemAttributeSet) SetWeakRelatedUniqueIdentifier(value string)

The unique identifier for the item to which the activity is related, but not linked. Full Topic

func (SearchableItemAttributeSet) SetWhiteBalance

func (s_ SearchableItemAttributeSet) SetWhiteBalance(value foundation.INumber)

The white balance setting when the camera captured the image. Full Topic

func (SearchableItemAttributeSet) Speed

The speed of the item, in kilometers per hour. Full Topic

func (SearchableItemAttributeSet) StartDate

The start date for the item. Full Topic

func (SearchableItemAttributeSet) StateOrProvince

func (s_ SearchableItemAttributeSet) StateOrProvince() string

The province or state of origin according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) SubThoroughfare

func (s_ SearchableItemAttributeSet) SubThoroughfare() string

The sublocation, such as a street number, for the item according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) Subject

func (s_ SearchableItemAttributeSet) Subject() string

The subject of the document. Full Topic

func (SearchableItemAttributeSet) SupportsNavigation

func (s_ SearchableItemAttributeSet) SupportsNavigation() foundation.Number

A value that indicates whether the item contains information sufficient to provide navigation to the location it represents. Full Topic

func (SearchableItemAttributeSet) SupportsPhoneCall

func (s_ SearchableItemAttributeSet) SupportsPhoneCall() foundation.Number

A value that indicates whether the item contains information sufficient to allow a phone call to a number associated with the item. Full Topic

func (SearchableItemAttributeSet) Tempo

The tempo of the music that the audio file contains, in beats per minute. Full Topic

func (SearchableItemAttributeSet) TextContent

func (s_ SearchableItemAttributeSet) TextContent() string

The textual content of the message. Full Topic

func (SearchableItemAttributeSet) Theme

The theme of the document. Full Topic

func (SearchableItemAttributeSet) Thoroughfare

func (s_ SearchableItemAttributeSet) Thoroughfare() string

The thoroughfare, such as a street name, associated with the location for the item according to guidelines the provider establishes. Full Topic

func (SearchableItemAttributeSet) ThumbnailData

func (s_ SearchableItemAttributeSet) ThumbnailData() []byte

Image data that represents the thumbnail of the item. Full Topic

func (SearchableItemAttributeSet) ThumbnailURL

func (s_ SearchableItemAttributeSet) ThumbnailURL() foundation.URL

The local file URL of the thumbnail image for the item. Full Topic

func (SearchableItemAttributeSet) TimeSignature

func (s_ SearchableItemAttributeSet) TimeSignature() string

The time signature of the musical composition that the audio or MIDI file contains, in a string, such as "4/4" or "7/8". Full Topic

func (SearchableItemAttributeSet) Timestamp

The timestamp on the item. Full Topic

func (SearchableItemAttributeSet) Title

The title of the item. Full Topic

func (SearchableItemAttributeSet) TotalBitRate

func (s_ SearchableItemAttributeSet) TotalBitRate() foundation.Number

The total bit rate of the media, combining audio and video. Full Topic

func (SearchableItemAttributeSet) URL

The URL associated with the media. Full Topic

func (SearchableItemAttributeSet) ValueForCustomKey

func (s_ SearchableItemAttributeSet) ValueForCustomKey(key ICustomAttributeKey) objc.Object

Returns the value associated with the specified custom attribute key. Full Topic

func (SearchableItemAttributeSet) Version

func (s_ SearchableItemAttributeSet) Version() string

A version string associated with the file. Full Topic

func (SearchableItemAttributeSet) VideoBitRate

func (s_ SearchableItemAttributeSet) VideoBitRate() foundation.Number

The video bit rate of the media. Full Topic

func (SearchableItemAttributeSet) WeakRelatedUniqueIdentifier

func (s_ SearchableItemAttributeSet) WeakRelatedUniqueIdentifier() string

The unique identifier for the item to which the activity is related, but not linked. Full Topic

func (SearchableItemAttributeSet) WhiteBalance

func (s_ SearchableItemAttributeSet) WhiteBalance() foundation.Number

The white balance setting when the camera captured the image. Full Topic

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL