We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a0e78f commit 7ab3fb0Copy full SHA for 7ab3fb0
Sources/FoundationEssentials/URL/URL.swift
@@ -274,7 +274,11 @@ public struct URLResourceValues {
274
275
#if os(macOS)
276
/// The array of Tag names.
277
- public var tagNames: [String]? { return _get(.tagNamesKey) }
+ public var tagNames: [String]? {
278
+ get { return _get(.tagNamesKey) }
279
+ @available(macOS 26.0, *)
280
+ set { _set(.tagNamesKey, newValue: newValue) }
281
+ }
282
#endif
283
284
/// The URL's path as a file system path.
0 commit comments