[foundation] Partial update for Xcode 11 beta 1 to 3 (#6538)

Some generic API require more work (manual bindings or generator
enhancements) before being included. xtro files are up to date.
This commit is contained in:
Sebastien Pouliot 2019-07-10 11:19:56 -04:00 коммит произвёл GitHub
Родитель f3cb969c2f
Коммит d02d379695
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
9 изменённых файлов: 825 добавлений и 781 удалений

Просмотреть файл

@ -376,6 +376,15 @@ namespace Foundation {
CloudSharingErrorMinimum = 5120,
[Mac (10,12)][iOS (10,0)][NoTV][NoWatch]
CloudSharingErrorMaximum = 5375,
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
CompressionFailedError = 5376,
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
DecompressionFailedError = 5377,
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
CompressionErrorMinimum = 5376,
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
CompressionErrorMaximum = 5503,
}
// note: Make sure names are identical/consistent with CFNetworkErrors.*
@ -548,6 +557,10 @@ namespace Foundation {
SkipsSubdirectoryDescendants = 1 << 0,
SkipsPackageDescendants = 1 << 1,
SkipsHiddenFiles = 1 << 2,
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
IncludesDirectoriesPostOrder = 1 << 3,
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
ProducesRelativePathUrls = 1 << 4,
}
[Flags]
@ -582,6 +595,7 @@ namespace Foundation {
PrinterDescriptionDirectory = 20,
SharedPublicDirectory = 21,
PreferencePanesDirectory = 22,
[NoWatch][NoiOS][NoTV]
ApplicationScriptsDirectory = 23,
ItemReplacementDirectory = 99,
AllApplicationsDirectory = 100,
@ -702,7 +716,11 @@ namespace Foundation {
public enum NSJsonReadingOptions : ulong {
MutableContainers = 1,
MutableLeaves = 2,
AllowFragments = 4
FragmentsAllowed = 4,
#if !XAMCORE_4_0
[Obsolete ("Use 'FragmentsAllowed. instead.")]
AllowFragments = FragmentsAllowed,
#endif
}
[Flags]
@ -711,6 +729,10 @@ namespace Foundation {
PrettyPrinted = 1,
[Mac (10,13), iOS (11,0), TV (11,0), Watch (4,0)]
SortedKeys = (1 << 1),
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
FragmentsAllowed = (1 << 2),
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
WithoutEscapingSlashes = (1 << 3),
}
[Native]
@ -889,12 +911,20 @@ namespace Foundation {
[Native]
public enum NSUrlRequestNetworkServiceType : ulong {
Default,
[Deprecated (PlatformName.MacOSX, 10, 15, message : "Use 'PushKit' framework instead.")]
[Deprecated (PlatformName.iOS, 13, 0, message : "Use 'PushKit' framework instead.")]
[Deprecated (PlatformName.WatchOS, 6, 0, message : "Use 'PushKit' framework instead.")]
[Deprecated (PlatformName.TvOS, 13, 0, message : "Use 'PushKit' framework instead.")]
VoIP,
Video,
Background,
Voice,
[Mac (10,14)][iOS (12,0)][Watch (5,0)][TV (12,0)]
ResponsiveData = 6,
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
AVStreaming = 8,
[Watch (6,0), TV (13,0), Mac (10,15, onlyOn64: true), iOS (13,0)]
ResponsiveAV = 9,
[Mac (10,12)][iOS (10,0)][Watch (3,0)][TV (10,0)]
CallSignaling = 11,
}

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -223,9 +223,17 @@ namespace Introspection {
}
break;
case "NSProgressReporting":
switch (type.Name) {
case "NSOperationQueue":
if (!TestRuntime.CheckXcodeVersion (11,0))
return true;
break;
default:
if (!TestRuntime.CheckXcodeVersion (9, 0))
return true;
break;
}
break;
case "GKSceneRootNodeType":
// it's an empty protocol, defined by a category and does not reply as expected
switch (type.Name) {

Просмотреть файл

@ -184,6 +184,14 @@
!missing-type! NSConstantString not bound
!missing-type! NSSimpleCString not bound
# now (xcode11) marked as deprecated - but never exposed by us
!missing-selector! NSURLSessionConfiguration::init not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSessionStreamTask::init not bound
# this is a better named version of `date` which we already bound as `Now` in C#
!missing-selector! +NSDate::now not bound
## unsorted
@ -218,6 +226,7 @@
!missing-field! NSGregorianCalendar not bound
!missing-field! NSHebrewCalendar not bound
!missing-field! NSIndianCalendar not bound
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSInternalInconsistencyException not bound
!missing-field! NSInvalidArchiveOperationException not bound
!missing-field! NSInvalidArgumentException not bound
@ -259,6 +268,7 @@
!missing-field! NSURLErrorFailingURLErrorKey not bound
!missing-field! NSURLErrorFailingURLPeerTrustErrorKey not bound
!missing-field! NSURLErrorFailingURLStringErrorKey not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-field! NSURLFileScheme not bound
!missing-field! NSWillBecomeMultiThreadedNotification not bound
!missing-field! NSXMLParserErrorDomain not bound
@ -998,9 +1008,18 @@
!missing-selector! NSUserActivity::init not bound
!missing-selector! NSXMLParser::abortParsing not bound
!missing-selector! NSXMLParser::parse not bound
## XPC not supported
!missing-selector! NSXPCConnection::invalidate not bound
!missing-selector! NSXPCConnection::resume not bound
!missing-selector! NSXPCConnection::suspend not bound
!missing-selector! NSXPCListener::invalidate not bound
!missing-selector! NSXPCListener::resume not bound
!missing-selector! NSXPCListener::suspend not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSXPCConnection::scheduleSendBarrierBlock: not bound
### NSXPCCoder
!missing-type! NSXPCCoder not bound
!missing-selector! NSXPCCoder::connection not bound
!missing-selector! NSXPCCoder::setUserInfo: not bound
!missing-selector! NSXPCCoder::userInfo not bound

Просмотреть файл

@ -1,141 +1,20 @@
!deprecated-attribute-missing! NSArray::arrayWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSArray::writeToFile:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::dictionaryWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::dictionaryWithContentsOfURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::initWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::initWithContentsOfURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::writeToFile:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::writeToURL:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::closeFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::offsetInFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::readDataOfLength: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::readDataToEndOfFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::seekToEndOfFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::seekToFileOffset: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::synchronizeFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::truncateFileAtOffset: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::writeData: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operationCount missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operations missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURL::parameterString missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLConnection::newsstandAssetDownload missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index:associatedIndex: not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
## appended from unclassified file
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDataTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDownloadTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskTransactionMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionUploadTask::init missing a [Deprecated] attribute
!missing-enum! NSCollectionChangeType not bound
!missing-enum! NSDataCompressionAlgorithm not bound
!missing-enum! NSOrderedCollectionDifferenceCalculationOptions not bound
!missing-enum! NSRelativeDateTimeFormatterStyle not bound
!missing-enum! NSRelativeDateTimeFormatterUnitsStyle not bound
!missing-enum! NSURLErrorNetworkUnavailableReason not bound
!missing-enum! NSURLSessionWebSocketCloseCode not bound
!missing-enum! NSURLSessionWebSocketMessageType not bound
!missing-field! NSHTTPCookieSameSiteLax not bound
!missing-field! NSHTTPCookieSameSitePolicy not bound
!missing-field! NSHTTPCookieSameSiteStrict not bound
!missing-protocol! NSURLSessionWebSocketDelegate not bound
!missing-protocol-conformance! NSOperationQueue should conform to NSProgressReporting
!missing-selector! +NSDate::now not bound
!missing-selector! +NSListFormatter::localizedStringByJoiningStrings: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index:associatedIndex: not bound
!missing-selector! +NSUnitDuration::microseconds not bound
!missing-selector! +NSUnitDuration::milliseconds not bound
!missing-selector! +NSUnitDuration::nanoseconds not bound
!missing-selector! +NSUnitDuration::picoseconds not bound
!missing-selector! +NSUnitFrequency::framesPerSecond not bound
!missing-selector! +NSUnitInformationStorage::bits not bound
!missing-selector! +NSUnitInformationStorage::bytes not bound
!missing-selector! +NSUnitInformationStorage::exabits not bound
!missing-selector! +NSUnitInformationStorage::exabytes not bound
!missing-selector! +NSUnitInformationStorage::exbibits not bound
!missing-selector! +NSUnitInformationStorage::exbibytes not bound
!missing-selector! +NSUnitInformationStorage::gibibits not bound
!missing-selector! +NSUnitInformationStorage::gibibytes not bound
!missing-selector! +NSUnitInformationStorage::gigabits not bound
!missing-selector! +NSUnitInformationStorage::gigabytes not bound
!missing-selector! +NSUnitInformationStorage::kibibits not bound
!missing-selector! +NSUnitInformationStorage::kibibytes not bound
!missing-selector! +NSUnitInformationStorage::kilobits not bound
!missing-selector! +NSUnitInformationStorage::kilobytes not bound
!missing-selector! +NSUnitInformationStorage::mebibits not bound
!missing-selector! +NSUnitInformationStorage::mebibytes not bound
!missing-selector! +NSUnitInformationStorage::megabits not bound
!missing-selector! +NSUnitInformationStorage::megabytes not bound
!missing-selector! +NSUnitInformationStorage::nibbles not bound
!missing-selector! +NSUnitInformationStorage::pebibits not bound
!missing-selector! +NSUnitInformationStorage::pebibytes not bound
!missing-selector! +NSUnitInformationStorage::petabits not bound
!missing-selector! +NSUnitInformationStorage::petabytes not bound
!missing-selector! +NSUnitInformationStorage::tebibits not bound
!missing-selector! +NSUnitInformationStorage::tebibytes not bound
!missing-selector! +NSUnitInformationStorage::terabits not bound
!missing-selector! +NSUnitInformationStorage::terabytes not bound
!missing-selector! +NSUnitInformationStorage::yobibits not bound
!missing-selector! +NSUnitInformationStorage::yobibytes not bound
!missing-selector! +NSUnitInformationStorage::yottabits not bound
!missing-selector! +NSUnitInformationStorage::yottabytes not bound
!missing-selector! +NSUnitInformationStorage::zebibits not bound
!missing-selector! +NSUnitInformationStorage::zebibytes not bound
!missing-selector! +NSUnitInformationStorage::zettabits not bound
!missing-selector! +NSUnitInformationStorage::zettabytes not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSData::compressedDataUsingAlgorithm:error: not bound
!missing-selector! NSData::decompressedDataUsingAlgorithm:error: not bound
!missing-selector! NSHTTPCookie::sameSitePolicy not bound
!missing-selector! NSListFormatter::itemFormatter not bound
!missing-selector! NSListFormatter::locale not bound
!missing-selector! NSListFormatter::setItemFormatter: not bound
!missing-selector! NSListFormatter::setLocale: not bound
!missing-selector! NSListFormatter::stringForObjectValue: not bound
!missing-selector! NSListFormatter::stringFromItems: not bound
!missing-selector! NSMutableData::compressUsingAlgorithm:error: not bound
!missing-selector! NSMutableData::decompressUsingAlgorithm:error: not bound
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSOperationQueue::progress not bound
!missing-selector! NSOrderedCollectionChange::associatedIndex not bound
!missing-selector! NSOrderedCollectionChange::changeType not bound
!missing-selector! NSOrderedCollectionChange::index not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index: not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index:associatedIndex: not bound
!missing-selector! NSOrderedCollectionChange::object not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedCollectionDifference::hasChanges not bound
!missing-selector! NSOrderedCollectionDifference::initWithChanges: not bound
!missing-selector! NSOrderedCollectionDifference::initWithInsertIndexes:insertedObjects:removeIndexes:removedObjects: not bound
@ -143,71 +22,9 @@
!missing-selector! NSOrderedCollectionDifference::insertions not bound
!missing-selector! NSOrderedCollectionDifference::inverseDifference not bound
!missing-selector! NSOrderedCollectionDifference::removals not bound
!missing-selector! NSRelativeDateTimeFormatter::calendar not bound
!missing-selector! NSRelativeDateTimeFormatter::dateTimeStyle not bound
!missing-selector! NSRelativeDateTimeFormatter::formattingContext not bound
!missing-selector! NSRelativeDateTimeFormatter::locale not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringForDate:relativeToDate: not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringFromDateComponents: not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringFromTimeInterval: not bound
!missing-selector! NSRelativeDateTimeFormatter::setCalendar: not bound
!missing-selector! NSRelativeDateTimeFormatter::setDateTimeStyle: not bound
!missing-selector! NSRelativeDateTimeFormatter::setFormattingContext: not bound
!missing-selector! NSRelativeDateTimeFormatter::setLocale: not bound
!missing-selector! NSRelativeDateTimeFormatter::setUnitsStyle: not bound
!missing-selector! NSRelativeDateTimeFormatter::stringForObjectValue: not bound
!missing-selector! NSRelativeDateTimeFormatter::unitsStyle not bound
!missing-selector! NSURLCache::initWithMemoryCapacity:diskCapacity:directoryURL: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSession::webSocketTaskWithRequest: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL:protocols: not bound
!missing-selector! NSURLSessionConfiguration::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLSessionConfiguration::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSessionConfiguration::init not bound
!missing-selector! NSURLSessionConfiguration::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSURLSessionConfiguration::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSURLSessionStreamTask::init not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestBodyBytesBeforeEncoding not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestBodyBytesSent not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestHeaderBytesSent not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseBodyBytesAfterDecoding not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseBodyBytesReceived not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseHeaderBytesReceived not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isCellular not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isConstrained not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isExpensive not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isMultipath not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::localAddress not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::localPort not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::negotiatedTLSCipherSuite not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::negotiatedTLSProtocolVersion not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::remoteAddress not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::remotePort not bound
!missing-selector! NSURLSessionWebSocketMessage::data not bound
!missing-selector! NSURLSessionWebSocketMessage::initWithData: not bound
!missing-selector! NSURLSessionWebSocketMessage::initWithString: not bound
!missing-selector! NSURLSessionWebSocketMessage::string not bound
!missing-selector! NSURLSessionWebSocketMessage::type not bound
!missing-selector! NSURLSessionWebSocketTask::cancelWithCloseCode:reason: not bound
!missing-selector! NSURLSessionWebSocketTask::closeCode not bound
!missing-selector! NSURLSessionWebSocketTask::closeReason not bound
!missing-selector! NSURLSessionWebSocketTask::maximumMessageSize not bound
!missing-selector! NSURLSessionWebSocketTask::receiveMessageWithCompletionHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::sendMessage:completionHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::sendPingWithPongReceiveHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::setMaximumMessageSize: not bound
!missing-selector! NSXPCCoder::connection not bound
!missing-selector! NSXPCCoder::setUserInfo: not bound
!missing-selector! NSXPCCoder::userInfo not bound
!missing-selector! NSXPCConnection::scheduleSendBarrierBlock: not bound
!missing-type! NSListFormatter not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-type! NSOrderedCollectionChange not bound
!missing-type! NSOrderedCollectionDifference not bound
!missing-type! NSRelativeDateTimeFormatter not bound
!missing-type! NSUnitInformationStorage not bound
!missing-type! NSURLSessionWebSocketMessage not bound
!missing-type! NSURLSessionWebSocketTask not bound
!missing-type! NSXPCCoder not bound

Просмотреть файл

@ -1,6 +1,12 @@
## Only one type currently, which default returns. Currently unneeded unless they extend.
!missing-selector! +NSDistributedNotificationCenter::notificationCenterForType: not bound
## XPC not supported
!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound
!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound
!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound
!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound
## unsorted
!duplicate-type-name! NSFileWrapperReadingOptions enum exists as both Foundation.NSFileWrapperReadingOptions and AppKit.NSFileWrapperReadingOptions
@ -57,7 +63,6 @@
!missing-field! NSHTTPPropertyServerHTTPVersionKey not bound
!missing-field! NSHTTPPropertyStatusCodeKey not bound
!missing-field! NSHTTPPropertyStatusReasonKey not bound
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSIntegerHashCallBacks not bound
!missing-field! NSIntegerMapKeyCallBacks not bound
!missing-field! NSIntegerMapValueCallBacks not bound

Просмотреть файл

@ -1,151 +1,20 @@
!deprecated-attribute-missing! NSArray::arrayWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSArray::writeToFile:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::dictionaryWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::dictionaryWithContentsOfURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::initWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::initWithContentsOfURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::writeToFile:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::writeToURL:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::closeFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::offsetInFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::readDataOfLength: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::readDataToEndOfFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::seekToEndOfFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::seekToFileOffset: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::synchronizeFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::truncateFileAtOffset: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::writeData: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSObject::defaultPlaceholderForMarker:withBinding: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSObject::setDefaultPlaceholder:forMarker:withBinding: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operationCount missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operations missing a [Deprecated] attribute
!deprecated-attribute-missing! NSTask::currentDirectoryPath missing a [Deprecated] attribute
!deprecated-attribute-missing! NSTask::launch missing a [Deprecated] attribute
!deprecated-attribute-missing! NSTask::launchedTaskWithLaunchPath:arguments: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSTask::launchPath missing a [Deprecated] attribute
!deprecated-attribute-missing! NSTask::setCurrentDirectoryPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSTask::setLaunchPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURL::parameterString missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index:associatedIndex: not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound
!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound
!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound
!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound
## appended from unclassified file
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDataTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDownloadTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskTransactionMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionUploadTask::init missing a [Deprecated] attribute
!missing-enum! NSCollectionChangeType not bound
!missing-enum! NSDataCompressionAlgorithm not bound
!missing-enum! NSOrderedCollectionDifferenceCalculationOptions not bound
!missing-enum! NSRelativeDateTimeFormatterStyle not bound
!missing-enum! NSRelativeDateTimeFormatterUnitsStyle not bound
!missing-enum! NSURLErrorNetworkUnavailableReason not bound
!missing-enum! NSURLSessionWebSocketCloseCode not bound
!missing-enum! NSURLSessionWebSocketMessageType not bound
!missing-field! NSHTTPCookieSameSiteLax not bound
!missing-field! NSHTTPCookieSameSitePolicy not bound
!missing-field! NSHTTPCookieSameSiteStrict not bound
!missing-protocol! NSURLSessionWebSocketDelegate not bound
!missing-protocol-conformance! NSOperationQueue should conform to NSProgressReporting
!missing-selector! +NSDate::now not bound
!missing-selector! +NSListFormatter::localizedStringByJoiningStrings: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index:associatedIndex: not bound
!missing-selector! +NSUnitDuration::microseconds not bound
!missing-selector! +NSUnitDuration::milliseconds not bound
!missing-selector! +NSUnitDuration::nanoseconds not bound
!missing-selector! +NSUnitDuration::picoseconds not bound
!missing-selector! +NSUnitFrequency::framesPerSecond not bound
!missing-selector! +NSUnitInformationStorage::bits not bound
!missing-selector! +NSUnitInformationStorage::bytes not bound
!missing-selector! +NSUnitInformationStorage::exabits not bound
!missing-selector! +NSUnitInformationStorage::exabytes not bound
!missing-selector! +NSUnitInformationStorage::exbibits not bound
!missing-selector! +NSUnitInformationStorage::exbibytes not bound
!missing-selector! +NSUnitInformationStorage::gibibits not bound
!missing-selector! +NSUnitInformationStorage::gibibytes not bound
!missing-selector! +NSUnitInformationStorage::gigabits not bound
!missing-selector! +NSUnitInformationStorage::gigabytes not bound
!missing-selector! +NSUnitInformationStorage::kibibits not bound
!missing-selector! +NSUnitInformationStorage::kibibytes not bound
!missing-selector! +NSUnitInformationStorage::kilobits not bound
!missing-selector! +NSUnitInformationStorage::kilobytes not bound
!missing-selector! +NSUnitInformationStorage::mebibits not bound
!missing-selector! +NSUnitInformationStorage::mebibytes not bound
!missing-selector! +NSUnitInformationStorage::megabits not bound
!missing-selector! +NSUnitInformationStorage::megabytes not bound
!missing-selector! +NSUnitInformationStorage::nibbles not bound
!missing-selector! +NSUnitInformationStorage::pebibits not bound
!missing-selector! +NSUnitInformationStorage::pebibytes not bound
!missing-selector! +NSUnitInformationStorage::petabits not bound
!missing-selector! +NSUnitInformationStorage::petabytes not bound
!missing-selector! +NSUnitInformationStorage::tebibits not bound
!missing-selector! +NSUnitInformationStorage::tebibytes not bound
!missing-selector! +NSUnitInformationStorage::terabits not bound
!missing-selector! +NSUnitInformationStorage::terabytes not bound
!missing-selector! +NSUnitInformationStorage::yobibits not bound
!missing-selector! +NSUnitInformationStorage::yobibytes not bound
!missing-selector! +NSUnitInformationStorage::yottabits not bound
!missing-selector! +NSUnitInformationStorage::yottabytes not bound
!missing-selector! +NSUnitInformationStorage::zebibits not bound
!missing-selector! +NSUnitInformationStorage::zebibytes not bound
!missing-selector! +NSUnitInformationStorage::zettabits not bound
!missing-selector! +NSUnitInformationStorage::zettabytes not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSData::compressedDataUsingAlgorithm:error: not bound
!missing-selector! NSData::decompressedDataUsingAlgorithm:error: not bound
!missing-selector! NSHTTPCookie::sameSitePolicy not bound
!missing-selector! NSListFormatter::itemFormatter not bound
!missing-selector! NSListFormatter::locale not bound
!missing-selector! NSListFormatter::setItemFormatter: not bound
!missing-selector! NSListFormatter::setLocale: not bound
!missing-selector! NSListFormatter::stringForObjectValue: not bound
!missing-selector! NSListFormatter::stringFromItems: not bound
!missing-selector! NSMutableData::compressUsingAlgorithm:error: not bound
!missing-selector! NSMutableData::decompressUsingAlgorithm:error: not bound
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSOperationQueue::progress not bound
!missing-selector! NSOrderedCollectionChange::associatedIndex not bound
!missing-selector! NSOrderedCollectionChange::changeType not bound
!missing-selector! NSOrderedCollectionChange::index not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index: not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index:associatedIndex: not bound
!missing-selector! NSOrderedCollectionChange::object not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedCollectionDifference::hasChanges not bound
!missing-selector! NSOrderedCollectionDifference::initWithChanges: not bound
!missing-selector! NSOrderedCollectionDifference::initWithInsertIndexes:insertedObjects:removeIndexes:removedObjects: not bound
@ -153,71 +22,9 @@
!missing-selector! NSOrderedCollectionDifference::insertions not bound
!missing-selector! NSOrderedCollectionDifference::inverseDifference not bound
!missing-selector! NSOrderedCollectionDifference::removals not bound
!missing-selector! NSRelativeDateTimeFormatter::calendar not bound
!missing-selector! NSRelativeDateTimeFormatter::dateTimeStyle not bound
!missing-selector! NSRelativeDateTimeFormatter::formattingContext not bound
!missing-selector! NSRelativeDateTimeFormatter::locale not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringForDate:relativeToDate: not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringFromDateComponents: not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringFromTimeInterval: not bound
!missing-selector! NSRelativeDateTimeFormatter::setCalendar: not bound
!missing-selector! NSRelativeDateTimeFormatter::setDateTimeStyle: not bound
!missing-selector! NSRelativeDateTimeFormatter::setFormattingContext: not bound
!missing-selector! NSRelativeDateTimeFormatter::setLocale: not bound
!missing-selector! NSRelativeDateTimeFormatter::setUnitsStyle: not bound
!missing-selector! NSRelativeDateTimeFormatter::stringForObjectValue: not bound
!missing-selector! NSRelativeDateTimeFormatter::unitsStyle not bound
!missing-selector! NSURLCache::initWithMemoryCapacity:diskCapacity:directoryURL: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSession::webSocketTaskWithRequest: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL:protocols: not bound
!missing-selector! NSURLSessionConfiguration::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLSessionConfiguration::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSessionConfiguration::init not bound
!missing-selector! NSURLSessionConfiguration::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSURLSessionConfiguration::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSURLSessionStreamTask::init not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestBodyBytesBeforeEncoding not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestBodyBytesSent not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestHeaderBytesSent not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseBodyBytesAfterDecoding not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseBodyBytesReceived not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseHeaderBytesReceived not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isCellular not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isConstrained not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isExpensive not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isMultipath not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::localAddress not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::localPort not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::negotiatedTLSCipherSuite not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::negotiatedTLSProtocolVersion not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::remoteAddress not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::remotePort not bound
!missing-selector! NSURLSessionWebSocketMessage::data not bound
!missing-selector! NSURLSessionWebSocketMessage::initWithData: not bound
!missing-selector! NSURLSessionWebSocketMessage::initWithString: not bound
!missing-selector! NSURLSessionWebSocketMessage::string not bound
!missing-selector! NSURLSessionWebSocketMessage::type not bound
!missing-selector! NSURLSessionWebSocketTask::cancelWithCloseCode:reason: not bound
!missing-selector! NSURLSessionWebSocketTask::closeCode not bound
!missing-selector! NSURLSessionWebSocketTask::closeReason not bound
!missing-selector! NSURLSessionWebSocketTask::maximumMessageSize not bound
!missing-selector! NSURLSessionWebSocketTask::receiveMessageWithCompletionHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::sendMessage:completionHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::sendPingWithPongReceiveHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::setMaximumMessageSize: not bound
!missing-selector! NSXPCCoder::connection not bound
!missing-selector! NSXPCCoder::setUserInfo: not bound
!missing-selector! NSXPCCoder::userInfo not bound
!missing-selector! NSXPCConnection::scheduleSendBarrierBlock: not bound
!missing-type! NSListFormatter not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-type! NSOrderedCollectionChange not bound
!missing-type! NSOrderedCollectionDifference not bound
!missing-type! NSRelativeDateTimeFormatter not bound
!missing-type! NSUnitInformationStorage not bound
!missing-type! NSURLSessionWebSocketMessage not bound
!missing-type! NSURLSessionWebSocketTask not bound
!missing-type! NSXPCCoder not bound

Просмотреть файл

@ -1,140 +1,20 @@
!deprecated-attribute-missing! NSArray::arrayWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSArray::writeToFile:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::dictionaryWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::dictionaryWithContentsOfURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::initWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::initWithContentsOfURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::writeToFile:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::writeToURL:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::closeFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::offsetInFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::readDataOfLength: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::readDataToEndOfFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::seekToEndOfFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::seekToFileOffset: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::synchronizeFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::truncateFileAtOffset: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::writeData: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operationCount missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operations missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURL::parameterString missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index:associatedIndex: not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
## appended from unclassified file
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDataTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDownloadTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskTransactionMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionUploadTask::init missing a [Deprecated] attribute
!missing-enum! NSCollectionChangeType not bound
!missing-enum! NSDataCompressionAlgorithm not bound
!missing-enum! NSOrderedCollectionDifferenceCalculationOptions not bound
!missing-enum! NSRelativeDateTimeFormatterStyle not bound
!missing-enum! NSRelativeDateTimeFormatterUnitsStyle not bound
!missing-enum! NSURLErrorNetworkUnavailableReason not bound
!missing-enum! NSURLSessionWebSocketCloseCode not bound
!missing-enum! NSURLSessionWebSocketMessageType not bound
!missing-field! NSHTTPCookieSameSiteLax not bound
!missing-field! NSHTTPCookieSameSitePolicy not bound
!missing-field! NSHTTPCookieSameSiteStrict not bound
!missing-protocol! NSURLSessionWebSocketDelegate not bound
!missing-protocol-conformance! NSOperationQueue should conform to NSProgressReporting
!missing-selector! +NSDate::now not bound
!missing-selector! +NSListFormatter::localizedStringByJoiningStrings: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index:associatedIndex: not bound
!missing-selector! +NSUnitDuration::microseconds not bound
!missing-selector! +NSUnitDuration::milliseconds not bound
!missing-selector! +NSUnitDuration::nanoseconds not bound
!missing-selector! +NSUnitDuration::picoseconds not bound
!missing-selector! +NSUnitFrequency::framesPerSecond not bound
!missing-selector! +NSUnitInformationStorage::bits not bound
!missing-selector! +NSUnitInformationStorage::bytes not bound
!missing-selector! +NSUnitInformationStorage::exabits not bound
!missing-selector! +NSUnitInformationStorage::exabytes not bound
!missing-selector! +NSUnitInformationStorage::exbibits not bound
!missing-selector! +NSUnitInformationStorage::exbibytes not bound
!missing-selector! +NSUnitInformationStorage::gibibits not bound
!missing-selector! +NSUnitInformationStorage::gibibytes not bound
!missing-selector! +NSUnitInformationStorage::gigabits not bound
!missing-selector! +NSUnitInformationStorage::gigabytes not bound
!missing-selector! +NSUnitInformationStorage::kibibits not bound
!missing-selector! +NSUnitInformationStorage::kibibytes not bound
!missing-selector! +NSUnitInformationStorage::kilobits not bound
!missing-selector! +NSUnitInformationStorage::kilobytes not bound
!missing-selector! +NSUnitInformationStorage::mebibits not bound
!missing-selector! +NSUnitInformationStorage::mebibytes not bound
!missing-selector! +NSUnitInformationStorage::megabits not bound
!missing-selector! +NSUnitInformationStorage::megabytes not bound
!missing-selector! +NSUnitInformationStorage::nibbles not bound
!missing-selector! +NSUnitInformationStorage::pebibits not bound
!missing-selector! +NSUnitInformationStorage::pebibytes not bound
!missing-selector! +NSUnitInformationStorage::petabits not bound
!missing-selector! +NSUnitInformationStorage::petabytes not bound
!missing-selector! +NSUnitInformationStorage::tebibits not bound
!missing-selector! +NSUnitInformationStorage::tebibytes not bound
!missing-selector! +NSUnitInformationStorage::terabits not bound
!missing-selector! +NSUnitInformationStorage::terabytes not bound
!missing-selector! +NSUnitInformationStorage::yobibits not bound
!missing-selector! +NSUnitInformationStorage::yobibytes not bound
!missing-selector! +NSUnitInformationStorage::yottabits not bound
!missing-selector! +NSUnitInformationStorage::yottabytes not bound
!missing-selector! +NSUnitInformationStorage::zebibits not bound
!missing-selector! +NSUnitInformationStorage::zebibytes not bound
!missing-selector! +NSUnitInformationStorage::zettabits not bound
!missing-selector! +NSUnitInformationStorage::zettabytes not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSData::compressedDataUsingAlgorithm:error: not bound
!missing-selector! NSData::decompressedDataUsingAlgorithm:error: not bound
!missing-selector! NSHTTPCookie::sameSitePolicy not bound
!missing-selector! NSListFormatter::itemFormatter not bound
!missing-selector! NSListFormatter::locale not bound
!missing-selector! NSListFormatter::setItemFormatter: not bound
!missing-selector! NSListFormatter::setLocale: not bound
!missing-selector! NSListFormatter::stringForObjectValue: not bound
!missing-selector! NSListFormatter::stringFromItems: not bound
!missing-selector! NSMutableData::compressUsingAlgorithm:error: not bound
!missing-selector! NSMutableData::decompressUsingAlgorithm:error: not bound
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSOperationQueue::progress not bound
!missing-selector! NSOrderedCollectionChange::associatedIndex not bound
!missing-selector! NSOrderedCollectionChange::changeType not bound
!missing-selector! NSOrderedCollectionChange::index not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index: not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index:associatedIndex: not bound
!missing-selector! NSOrderedCollectionChange::object not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedCollectionDifference::hasChanges not bound
!missing-selector! NSOrderedCollectionDifference::initWithChanges: not bound
!missing-selector! NSOrderedCollectionDifference::initWithInsertIndexes:insertedObjects:removeIndexes:removedObjects: not bound
@ -142,71 +22,9 @@
!missing-selector! NSOrderedCollectionDifference::insertions not bound
!missing-selector! NSOrderedCollectionDifference::inverseDifference not bound
!missing-selector! NSOrderedCollectionDifference::removals not bound
!missing-selector! NSRelativeDateTimeFormatter::calendar not bound
!missing-selector! NSRelativeDateTimeFormatter::dateTimeStyle not bound
!missing-selector! NSRelativeDateTimeFormatter::formattingContext not bound
!missing-selector! NSRelativeDateTimeFormatter::locale not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringForDate:relativeToDate: not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringFromDateComponents: not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringFromTimeInterval: not bound
!missing-selector! NSRelativeDateTimeFormatter::setCalendar: not bound
!missing-selector! NSRelativeDateTimeFormatter::setDateTimeStyle: not bound
!missing-selector! NSRelativeDateTimeFormatter::setFormattingContext: not bound
!missing-selector! NSRelativeDateTimeFormatter::setLocale: not bound
!missing-selector! NSRelativeDateTimeFormatter::setUnitsStyle: not bound
!missing-selector! NSRelativeDateTimeFormatter::stringForObjectValue: not bound
!missing-selector! NSRelativeDateTimeFormatter::unitsStyle not bound
!missing-selector! NSURLCache::initWithMemoryCapacity:diskCapacity:directoryURL: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSession::webSocketTaskWithRequest: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL:protocols: not bound
!missing-selector! NSURLSessionConfiguration::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLSessionConfiguration::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSessionConfiguration::init not bound
!missing-selector! NSURLSessionConfiguration::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSURLSessionConfiguration::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSURLSessionStreamTask::init not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestBodyBytesBeforeEncoding not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestBodyBytesSent not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestHeaderBytesSent not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseBodyBytesAfterDecoding not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseBodyBytesReceived not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseHeaderBytesReceived not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isCellular not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isConstrained not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isExpensive not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isMultipath not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::localAddress not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::localPort not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::negotiatedTLSCipherSuite not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::negotiatedTLSProtocolVersion not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::remoteAddress not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::remotePort not bound
!missing-selector! NSURLSessionWebSocketMessage::data not bound
!missing-selector! NSURLSessionWebSocketMessage::initWithData: not bound
!missing-selector! NSURLSessionWebSocketMessage::initWithString: not bound
!missing-selector! NSURLSessionWebSocketMessage::string not bound
!missing-selector! NSURLSessionWebSocketMessage::type not bound
!missing-selector! NSURLSessionWebSocketTask::cancelWithCloseCode:reason: not bound
!missing-selector! NSURLSessionWebSocketTask::closeCode not bound
!missing-selector! NSURLSessionWebSocketTask::closeReason not bound
!missing-selector! NSURLSessionWebSocketTask::maximumMessageSize not bound
!missing-selector! NSURLSessionWebSocketTask::receiveMessageWithCompletionHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::sendMessage:completionHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::sendPingWithPongReceiveHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::setMaximumMessageSize: not bound
!missing-selector! NSXPCCoder::connection not bound
!missing-selector! NSXPCCoder::setUserInfo: not bound
!missing-selector! NSXPCCoder::userInfo not bound
!missing-selector! NSXPCConnection::scheduleSendBarrierBlock: not bound
!missing-type! NSListFormatter not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-type! NSOrderedCollectionChange not bound
!missing-type! NSOrderedCollectionDifference not bound
!missing-type! NSRelativeDateTimeFormatter not bound
!missing-type! NSUnitInformationStorage not bound
!missing-type! NSURLSessionWebSocketMessage not bound
!missing-type! NSURLSessionWebSocketTask not bound
!missing-type! NSXPCCoder not bound

Просмотреть файл

@ -1,141 +1,20 @@
!deprecated-attribute-missing! NSArray::arrayWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSArray::writeToFile:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::dictionaryWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::dictionaryWithContentsOfURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::initWithContentsOfFile: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::initWithContentsOfURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::writeToFile:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDictionary::writeToURL:atomically: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::closeFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::offsetInFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::readDataOfLength: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::readDataToEndOfFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::seekToEndOfFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::seekToFileOffset: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::synchronizeFile missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::truncateFileAtOffset: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSFileHandle::writeData: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operationCount missing a [Deprecated] attribute
!deprecated-attribute-missing! NSOperationQueue::operations missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURL::parameterString missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionStreamTask::stopSecureConnection missing a [Deprecated] attribute
!missing-field! NSInconsistentArchiveException not bound
!missing-field! NSURLErrorNetworkUnavailableReasonKey not bound
!missing-selector! +NSByteCountFormatter::stringFromMeasurement:countStyle: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index:associatedIndex: not bound
!missing-selector! NSArray::arrayByApplyingDifference: not bound
!missing-selector! NSArray::differenceFromArray: not bound
!missing-selector! NSArray::differenceFromArray:withOptions: not bound
!missing-selector! NSArray::differenceFromArray:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSByteCountFormatter::stringForObjectValue: not bound
!missing-selector! NSByteCountFormatter::stringFromMeasurement: not bound
!missing-selector! NSDirectoryEnumerator::isEnumeratingDirectoryPostOrder not bound
!missing-selector! NSFileHandle::closeAndReturnError: not bound
!missing-selector! NSFileHandle::getOffset:error: not bound
!missing-selector! NSFileHandle::readDataToEndOfFileAndReturnError: not bound
!missing-selector! NSFileHandle::readDataUpToLength:error: not bound
!missing-selector! NSFileHandle::seekToEndReturningOffset:error: not bound
!missing-selector! NSFileHandle::seekToOffset:error: not bound
!missing-selector! NSFileHandle::synchronizeAndReturnError: not bound
!missing-selector! NSFileHandle::truncateAtOffset:error: not bound
!missing-selector! NSFileHandle::writeData:error: not bound
!missing-selector! NSHTTPURLResponse::valueForHTTPHeaderField: not bound
!missing-selector! NSMutableArray::applyDifference: not bound
!missing-selector! NSMutableOrderedSet::applyDifference: not bound
!missing-selector! NSOperationQueue::addBarrierBlock: not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-selector! NSURLSession::streamTaskWithHostName:port: not bound
## appended from unclassified file
!deprecated-attribute-missing! NSURLCache::initWithMemoryCapacity:diskCapacity:diskPath: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDataTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionDownloadTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTask::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionTaskTransactionMetrics::init missing a [Deprecated] attribute
!deprecated-attribute-missing! NSURLSessionUploadTask::init missing a [Deprecated] attribute
!missing-enum! NSCollectionChangeType not bound
!missing-enum! NSDataCompressionAlgorithm not bound
!missing-enum! NSOrderedCollectionDifferenceCalculationOptions not bound
!missing-enum! NSRelativeDateTimeFormatterStyle not bound
!missing-enum! NSRelativeDateTimeFormatterUnitsStyle not bound
!missing-enum! NSURLErrorNetworkUnavailableReason not bound
!missing-enum! NSURLSessionWebSocketCloseCode not bound
!missing-enum! NSURLSessionWebSocketMessageType not bound
!missing-field! NSHTTPCookieSameSiteLax not bound
!missing-field! NSHTTPCookieSameSitePolicy not bound
!missing-field! NSHTTPCookieSameSiteStrict not bound
!missing-protocol! NSURLSessionWebSocketDelegate not bound
!missing-protocol-conformance! NSOperationQueue should conform to NSProgressReporting
!missing-selector! +NSDate::now not bound
!missing-selector! +NSListFormatter::localizedStringByJoiningStrings: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index: not bound
!missing-selector! +NSOrderedCollectionChange::changeWithObject:type:index:associatedIndex: not bound
!missing-selector! +NSUnitDuration::microseconds not bound
!missing-selector! +NSUnitDuration::milliseconds not bound
!missing-selector! +NSUnitDuration::nanoseconds not bound
!missing-selector! +NSUnitDuration::picoseconds not bound
!missing-selector! +NSUnitFrequency::framesPerSecond not bound
!missing-selector! +NSUnitInformationStorage::bits not bound
!missing-selector! +NSUnitInformationStorage::bytes not bound
!missing-selector! +NSUnitInformationStorage::exabits not bound
!missing-selector! +NSUnitInformationStorage::exabytes not bound
!missing-selector! +NSUnitInformationStorage::exbibits not bound
!missing-selector! +NSUnitInformationStorage::exbibytes not bound
!missing-selector! +NSUnitInformationStorage::gibibits not bound
!missing-selector! +NSUnitInformationStorage::gibibytes not bound
!missing-selector! +NSUnitInformationStorage::gigabits not bound
!missing-selector! +NSUnitInformationStorage::gigabytes not bound
!missing-selector! +NSUnitInformationStorage::kibibits not bound
!missing-selector! +NSUnitInformationStorage::kibibytes not bound
!missing-selector! +NSUnitInformationStorage::kilobits not bound
!missing-selector! +NSUnitInformationStorage::kilobytes not bound
!missing-selector! +NSUnitInformationStorage::mebibits not bound
!missing-selector! +NSUnitInformationStorage::mebibytes not bound
!missing-selector! +NSUnitInformationStorage::megabits not bound
!missing-selector! +NSUnitInformationStorage::megabytes not bound
!missing-selector! +NSUnitInformationStorage::nibbles not bound
!missing-selector! +NSUnitInformationStorage::pebibits not bound
!missing-selector! +NSUnitInformationStorage::pebibytes not bound
!missing-selector! +NSUnitInformationStorage::petabits not bound
!missing-selector! +NSUnitInformationStorage::petabytes not bound
!missing-selector! +NSUnitInformationStorage::tebibits not bound
!missing-selector! +NSUnitInformationStorage::tebibytes not bound
!missing-selector! +NSUnitInformationStorage::terabits not bound
!missing-selector! +NSUnitInformationStorage::terabytes not bound
!missing-selector! +NSUnitInformationStorage::yobibits not bound
!missing-selector! +NSUnitInformationStorage::yobibytes not bound
!missing-selector! +NSUnitInformationStorage::yottabits not bound
!missing-selector! +NSUnitInformationStorage::yottabytes not bound
!missing-selector! +NSUnitInformationStorage::zebibits not bound
!missing-selector! +NSUnitInformationStorage::zebibytes not bound
!missing-selector! +NSUnitInformationStorage::zettabits not bound
!missing-selector! +NSUnitInformationStorage::zettabytes not bound
!missing-selector! +NSXPCConnection::currentConnection not bound
!missing-selector! NSData::compressedDataUsingAlgorithm:error: not bound
!missing-selector! NSData::decompressedDataUsingAlgorithm:error: not bound
!missing-selector! NSHTTPCookie::sameSitePolicy not bound
!missing-selector! NSListFormatter::itemFormatter not bound
!missing-selector! NSListFormatter::locale not bound
!missing-selector! NSListFormatter::setItemFormatter: not bound
!missing-selector! NSListFormatter::setLocale: not bound
!missing-selector! NSListFormatter::stringForObjectValue: not bound
!missing-selector! NSListFormatter::stringFromItems: not bound
!missing-selector! NSMutableData::compressUsingAlgorithm:error: not bound
!missing-selector! NSMutableData::decompressUsingAlgorithm:error: not bound
!missing-selector! NSMutableURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSMutableURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSMutableURLRequest::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSMutableURLRequest::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSOperationQueue::progress not bound
!missing-selector! NSOrderedCollectionChange::associatedIndex not bound
!missing-selector! NSOrderedCollectionChange::changeType not bound
!missing-selector! NSOrderedCollectionChange::index not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index: not bound
!missing-selector! NSOrderedCollectionChange::initWithObject:type:index:associatedIndex: not bound
!missing-selector! NSOrderedCollectionChange::object not bound
!missing-selector! NSOrderedCollectionDifference::differenceByTransformingChangesWithBlock: not bound
!missing-selector! NSOrderedCollectionDifference::hasChanges not bound
!missing-selector! NSOrderedCollectionDifference::initWithChanges: not bound
!missing-selector! NSOrderedCollectionDifference::initWithInsertIndexes:insertedObjects:removeIndexes:removedObjects: not bound
@ -143,71 +22,9 @@
!missing-selector! NSOrderedCollectionDifference::insertions not bound
!missing-selector! NSOrderedCollectionDifference::inverseDifference not bound
!missing-selector! NSOrderedCollectionDifference::removals not bound
!missing-selector! NSRelativeDateTimeFormatter::calendar not bound
!missing-selector! NSRelativeDateTimeFormatter::dateTimeStyle not bound
!missing-selector! NSRelativeDateTimeFormatter::formattingContext not bound
!missing-selector! NSRelativeDateTimeFormatter::locale not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringForDate:relativeToDate: not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringFromDateComponents: not bound
!missing-selector! NSRelativeDateTimeFormatter::localizedStringFromTimeInterval: not bound
!missing-selector! NSRelativeDateTimeFormatter::setCalendar: not bound
!missing-selector! NSRelativeDateTimeFormatter::setDateTimeStyle: not bound
!missing-selector! NSRelativeDateTimeFormatter::setFormattingContext: not bound
!missing-selector! NSRelativeDateTimeFormatter::setLocale: not bound
!missing-selector! NSRelativeDateTimeFormatter::setUnitsStyle: not bound
!missing-selector! NSRelativeDateTimeFormatter::stringForObjectValue: not bound
!missing-selector! NSRelativeDateTimeFormatter::unitsStyle not bound
!missing-selector! NSURLCache::initWithMemoryCapacity:diskCapacity:directoryURL: not bound
!missing-selector! NSURLRequest::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLRequest::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSession::init not bound
!missing-selector! NSURLSession::webSocketTaskWithRequest: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL: not bound
!missing-selector! NSURLSession::webSocketTaskWithURL:protocols: not bound
!missing-selector! NSURLSessionConfiguration::allowsConstrainedNetworkAccess not bound
!missing-selector! NSURLSessionConfiguration::allowsExpensiveNetworkAccess not bound
!missing-selector! NSURLSessionConfiguration::init not bound
!missing-selector! NSURLSessionConfiguration::setAllowsConstrainedNetworkAccess: not bound
!missing-selector! NSURLSessionConfiguration::setAllowsExpensiveNetworkAccess: not bound
!missing-selector! NSURLSessionStreamTask::init not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestBodyBytesBeforeEncoding not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestBodyBytesSent not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfRequestHeaderBytesSent not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseBodyBytesAfterDecoding not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseBodyBytesReceived not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::countOfResponseHeaderBytesReceived not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isCellular not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isConstrained not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isExpensive not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::isMultipath not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::localAddress not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::localPort not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::negotiatedTLSCipherSuite not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::negotiatedTLSProtocolVersion not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::remoteAddress not bound
!missing-selector! NSURLSessionTaskTransactionMetrics::remotePort not bound
!missing-selector! NSURLSessionWebSocketMessage::data not bound
!missing-selector! NSURLSessionWebSocketMessage::initWithData: not bound
!missing-selector! NSURLSessionWebSocketMessage::initWithString: not bound
!missing-selector! NSURLSessionWebSocketMessage::string not bound
!missing-selector! NSURLSessionWebSocketMessage::type not bound
!missing-selector! NSURLSessionWebSocketTask::cancelWithCloseCode:reason: not bound
!missing-selector! NSURLSessionWebSocketTask::closeCode not bound
!missing-selector! NSURLSessionWebSocketTask::closeReason not bound
!missing-selector! NSURLSessionWebSocketTask::maximumMessageSize not bound
!missing-selector! NSURLSessionWebSocketTask::receiveMessageWithCompletionHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::sendMessage:completionHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::sendPingWithPongReceiveHandler: not bound
!missing-selector! NSURLSessionWebSocketTask::setMaximumMessageSize: not bound
!missing-selector! NSXPCCoder::connection not bound
!missing-selector! NSXPCCoder::setUserInfo: not bound
!missing-selector! NSXPCCoder::userInfo not bound
!missing-selector! NSXPCConnection::scheduleSendBarrierBlock: not bound
!missing-type! NSListFormatter not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions: not bound
!missing-selector! NSOrderedSet::differenceFromOrderedSet:withOptions:usingEquivalenceTest: not bound
!missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound
!missing-type! NSOrderedCollectionChange not bound
!missing-type! NSOrderedCollectionDifference not bound
!missing-type! NSRelativeDateTimeFormatter not bound
!missing-type! NSUnitInformationStorage not bound
!missing-type! NSURLSessionWebSocketMessage not bound
!missing-type! NSURLSessionWebSocketTask not bound
!missing-type! NSXPCCoder not bound