I have a working document based project with both iOS and macOS targets. The document is a bundle and I have each target able to open files from the other. I was looking at some online tutorials on UIDocument (and particularly this one from Ray Wenderlich ) and they are keeping a variable for the (NS)FileWrapper in the document class. I currently have my model create a FileWrapper lazily each time one is needed. I am also discarding the fileWrapper when i unpack a model object in read(from fileWrapper: FileWrapper, ofType typeName: String) on NSDocument or load(fromContents contents: Any, ofType typeName: String?) on UIDocument. Is there any good reason for keeping the FileWrapper while the document is open, or is the approach I've adopted just as functional? thanks.
(Why) Should I keep a pointer to the FileWrapper in the open document?
282 Views Asked by Jef At
1
There are 1 best solutions below
Related Questions in IOS
- URLSession requesting JSON array from server not working
- Incorrect display of LinearGradientBrush in IOS
- Module not found when building flutter app for IOS
- How to share metadata of an audio url file to a WhatsApp conversation with friends
- Occasional crash at NSURLSessionDataTask dataTaskWithRequest:completionHandler:
- Expo Deep linking on iOS is not working (because of Google sign-in?)
- On iOS, the keyboard does not offer a 6-character SMS code
- Hi, there is an error happened when I build my flutter app, after I'm installing firebase packages occurs that error
- The copy/paste functionalities don't work only on iOS in the Flutter app
- Hide LiveActivityIntent Button from Shortcuts App
- While Running Github Actions Pipeline: No Signing Certificate "iOS Development" found: No "iOS Development" signing certificate matching team ID
- Actionable notification api call not working in background
- Accessibility : Full keyboard access with scroll view in swiftui
- There is a problem with the request entity - You are not allowed to create 'iOS' profile with App ID 'XXXX'
- I am getting "binding has not yet been initialized" error when trying to connect firebase with flutter
Related Questions in MACOS
- Error installing Nativescript on Mac M2 Sonoma 14.4.1
- macOS - Most secure way of a GUI SUDO_ASKPASS
- When using onDrag in SwiftUI on Mac how can I detect when the dragged object has been released anywhere?
- Why does Hugo generate different taxonomy-related HTML on different OS's?
- ZSH function parameters conundrum
- how to make read only file/directory in Mac writable
- macOS BigSur - Unable to run bundled php version or brew php 8
- 9 Digit Addresses in Hexadecimal System in MacOS
- MacOS Bash-Script: while read p and echo
- How to make a range for tail rows on a categorized table in Numbers with JXA scripts?
- Cannot build a basic project with curl on Mac (M2) for Raspberry Pi Pico
- How to recover deleted files from create vite react project
- Can't run built SFML project from Xcode template
- React Native - RealmJS - Linker command failed with exit code 1
- How can I manually add a keyboard shortcut to a Shortcut Action Service directly via the system files, without going through the System Prefs GUI?
Related Questions in NSDOCUMENT
- Autosaving NSDocument memory leak with NSWindow and NSToolbar - NSDocumentTitlebarPopoverViewController leaks
- macOS document based app - save all documents as one
- Implementing NSDocument in a right way
- Make "Close All" (cmd+option+W) apply only to one type of document windows
- iCloud Drive: NSDocument.revert(toContentsOf:ofType:) called when document is merely opened on another device
- NSDocument XML read Issue
- displayName won't set despite allowing set
- How to find out if print panel was closed successfully when printing from a PDFView
- `NSDocument`'s `data(ofType:)` getting data from (async) `actor`
- Is NSDocument subclass a model object or not?
- NSDocument-Based Application: Selecting Default File Type in NSSavePanel
- Changing NSDocument tab names. (Swift)
- NSDocument file wrapper sync via iCloud doesn't appear to support editing on multiple computers simultaneously
- Get NSDocument from NSObject
- Document based app using one single window
Related Questions in UIDOCUMENT
- Renaming UIDocument using UINavigationItemRenameDelegate
- How to resolve Error on closing document picker
- UIDocumentBrowserViewController doesn't call localizedName or honor shouldShowFileExtensions
- What is the best strategy for saving a "Most Recently Used" document list on iOS?
- iCloud Drive: NSDocument.revert(toContentsOf:ofType:) called when document is merely opened on another device
- How to use iOS security scoped bookmarks across devices?
- Proper way to check if URL points to directory or file (uncluding FileWrapper)?
- UIDocument saveToURL deletes original file
- DocumentPicker got NULL for file
- UIDocument synchronous read - completion handler stalled in dispatch
- NSURL URLByAppendingPathExtension Crash
- How to prevent file name conflict when saving UIDocument to new URL without FileManager
- how to initalise UIDocumentPickerViewController noting "forOpeningContentTypes" (from doco) seems to be deprecated in IOS?
- How could one produce an icon from a document (based on file type), selected via UIDocumentationPickerController?
- How to avoid strange behavior when scene-based document mac catalyst app reopens windows on app restart?
Related Questions in NSFILEWRAPPER
- NSDocument file wrapper sync via iCloud doesn't appear to support editing on multiple computers simultaneously
- When using NSFileWrapper, is there a way to handle huge output files by writing multiple times with chunks of NSData objects?
- UIDocument, FileWrapper & Third-Party File Providers
- How to save files to a document package with a custom extension in Swift
- Handling image load/store in a UIDocument that contains multiple images
- File rename failing with NSCocoaErrorDomain Code=513 on device
- iOS App using iCloud storage is adding .icloud file extension to my documents
- (Why) Should I keep a pointer to the FileWrapper in the open document?
- Export UIDocument with custom file package UTI
- Getting a package contents as NSData
- How do I handle NSFileWrapper files sent via email to non iOS platforms?
- Distinguish between a NSFileWrapper and a directory?
- UIDocument + NSFileWrapper + iCloud = Strange Behaviour
- How to deal with NSFileWrapper and concurrency?
- Cocoa document incrementally save big package
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Keeping a reference to the FileWrapper is recommended in Session 218 of WWDC2012 See: https://developer.apple.com/videos/play/wwdc2012/218/