|
: 30 : 30 : 0 |
Deleting a bunch (or even a single) document from Mail can be tediously slow compared to other email clients. Not sure how others do it quicker, but here is one suggestion for Notes.
When a change to a view occurs, Notes must always trigger a view update on the server then synchronously receive the updated entries.
When talking about changing data, this is a necessary round-trip, but when just deleting documents, the UIView should be able to safely assume that the call to the server will succeed, and just update the UIView immediately while the transaction with the server occurs asynchronously.
If the transaction fails it can be dealt with appropriately. This could be extended to a general view option "Pre-emptive view update" or something like that.
|