일모도원(日暮途遠) 개발자
[MacOS] 최근 읽은 문서 리스트 초기화 하기 본문
최근 읽은 문서 리스트 초기화 하기
NSDocumentController.shared.clearRecentDocuments(self)
참고 : 최근 읽은 문서 리스트 가져오기.
private func makeRecentDocumentsList() -> [URL] {
// Need to call resolvingSymlinksInPath() on both sides, because it changes "/private/var" to "/var" as a special case,
// even though "/var" points to "/private/var" (i.e. it changes it the opposite direction from what is expected).
// This is probably a kludge on Apple's part to avoid breaking legacy FreeBSD code.
NSDocumentController.shared.recentDocumentURLs.filter { $0.resolvingSymlinksInPath() != lastPlaybackURL?.resolvingSymlinksInPath() }
}