0
私は、次のコードを使用して迅速にファインダーのタグを取得することができます:ファインダータグをswiftから設定しますか?
if let tagArray = try url.resourceValues(forKeys:[.tagNamesKey]).tagNames {
...
}
しかし、それはエラーになります設定を:
var values = URLResourceValues()
values.tagNames = finderTags
はエラーを与える:
Compile Swift Module 'tagsync' (1 sources)
main.swift:104:20: error: cannot assign to property: 'tagNames' is a get-only property
values.tagNames = finderTags
~~~~~~~~~~~~~~~^
どのようにすることができます1つはタグから迅速に書き込みますか?
この例は、タグを書き込むのに役立ちます:https://stackoverflow.com/questions/38343186/write-extend-file-attributes-swift-example – user1840362