Quick Note

RSS for tag

Integrate the Notes app with your app and web content.

Posts under Quick Note tag

11 Posts
Sort by:
Post not yet marked as solved
3 Replies
1.2k Views
I'm trying to adopt Quick Note in a document-based app. Has anyone got the "Add Link" button to show up for documents located in iCloud? For local documents, the button works but then userInfo dictionary is missing from the continued NSUserActivity... I have prepared an Xcode project that demonstrates the issue, available here on GitHub with a README describing what I have tried and what's not working in more detail: https://github.com/tomaskraina/feedbackassistant.apple.com/tree/master/QuickNote-UIDocumentVsUserActivity
Posted
by
Post not yet marked as solved
4 Replies
9.9k Views
Anyone figure out where to turn this off? The bottom right is my default location for clicking back to the desktop, when I want to walk away for a few minutes and not risk the pets typing on my keyboard.
Posted
by
Post not yet marked as solved
0 Replies
395 Views
Hi, for over a year, documents scanned from within Notes from an iPhone do not render on iCloud on Windows 10 desktop. Just a grey box. I've tried Chrome and Firefox browsers. Renders fine on my iPhone. image URL: https://cvws.icloud-content.com/B/AdC2Qi6aif2MVfvJVLe2HaOSQD_zAaImNE-Z9l-0qgWR8zJ69eNGSyDW/$%7Bf%7D?o=Ai0ljeS4_NmRlHgV3ebQaR2HINPTQLkmicIKLMfg0tzf&v=1&x=3&a=CAogvZena-uvdBdLsJ4UqaCt7GPO-t7FabjqlatkcUB7gecSbRCfoN6iri8Yn_25pK4vIgEAUgSSQD_zWgRGSyDWaiZpv8QRPdD3l8Wf91zsKO4xdTOnAa9u-Ah2lR7DLfeMX3oWlAZoPXImRU1bYWz2-c6f4jw0kTVuSTWzWo7VcBcuMnbZuxYV7ZWJwb56V9U&e=1627332181&fl=&r=e30cc063-0064-4953-a581-2dbe7dbe7734-1&k=iV4_MWdPlnjxjHGv04TMtQ&ckc=com.apple.notes&ckz=Notes&p=36&s=1Unel1NS7FILccuxTjeLKUlDHVk
Posted
by
Post not yet marked as solved
0 Replies
321 Views
I'm planning to adopt Quick Note inside my application, however, I'm having an issue where by setting an webpageURL property on NSUserActivity, I lose control over how the thumbnail looks. Instead of displaying the content that I used on NSUserActivity's title, it seems to get its title from the web page itself. Is there a way to avoid this behaviour? I'd like to keep the webpageURL property defined because it allows our users to open the content on a web browser if they don't have the application installed.
Posted
by
Post not yet marked as solved
0 Replies
263 Views
Can someone please work on making Notability, or some equivalent notebook/note taking app or function accessible from the unlock screen. I still carry a pocket notepad and a pen, because opening my iPad, unlocking it, bringing up Notability, opening up a new note, and writing a note to myself takes so long I’ll forget why I did all that in the first place. Taking a note should be as easy as accessing your camera, or turning on the flashlight function.
Posted
by
Post not yet marked as solved
0 Replies
244 Views
When i entered my icloud note from note app, as usual. It appeared in 2-3 seconds, then it completely disappeared. I even didnt touch or erase it. It just disappeared in front of me. Now im freaking out cause all my important informations was in that note. And then i check in the setting. My free icloud storage in the setting section said, i used 3,9Mb/ 5 gb. But i remember i have just used up all 5gb for such a long time. Later i enter Icloud.com to check my notes from website, It disappeared too. Pls help me
Posted
by
Post not yet marked as solved
0 Replies
303 Views
In earlier iPadOS betas I used the globe-Q keyboard shortcut to create a Quick Note. This no longer works for me, and I am not sure why. I do not see the keyboard shortcut listed if I hold down the globe key. Was the keyboard shortcut removed? Could the problem be that I have a Magic Keyboard (not designed specifically for an iPad) and have the function key mapped to the globe key? John
Posted
by
Post not yet marked as solved
0 Replies
381 Views
I am trying to implement Quick Notes through SwiftUI, rather than UIKit or AppKit. I am unsure if the behaviour below is expected, or due to a bug. I have already successfully implemented NSUserActivity for Handoff, Spotlight and Siri Reminders, using the .userActivity() view modifier. These NSUserActivity instances use the NSUserActivity.userInfo dictionary to store and correctly restore the content through the .onContinueUserActivity(perform: ) methods. Quick Notes requires using the .persistentIdentifier or .targetContentIdentifier properties, rather than the .userInfo dictionary alone. However, when I set these either of these to unique identifiers using the code below, they are not correctly stored within the useractivity. MyView() .userActivity(ActivityString, updateUserActivity) private func updateUserActivity(_ activity: NSUserActivity) {     activity.isEligibleForSearch = true     activity.isEligibleForHandoff = true     activity.title = "Title"     activity.targetContentIdentifier = myItemUniqueID     activity.persistentIdentifier = myItemUniqueID     activity.userInfo = ["id": myItemUniqueID]     print(activity.targetContentIdentifier) // Correctly prints     print(activity.persistentIdentifier) // Correctly prints     print(activity.userInfo) // Correctly prints     } The identifiers print correctly when setting the user activity above. However, when restoring the user activity (tested through Handoff and Spotlight Search), the targetContentIdentifier and persistentIdentifier strings are empty. MyView()     .onContinueUserActivity(ActivityString, perform: continueUserActivity) private func continueUserActivity(_ activity: NSUserActivity) {     print(activity.persistentIdentifier) // Nil     print(activity.targetContentIdentifier) // Nil     print(activity.userInfo) // Correctly prints     } Is there something else I must do, or is this unexpected behaviour?
Posted
by
Post not yet marked as solved
0 Replies
312 Views
I see that notes:// url will open notes.app, but what is the syntax to show a specific note? I am interested in showing notes that are not explicitly shared. For example, I have a note with title "Movies" and note id "x-coredata://1C50AF52-CC9F-4BBE-8122-D5F713B198E8/ICNote/p22972" I tried things like: notes://Movies notes://?name=Movies notes://1C50AF52-CC9F-4BBE-8122-D5F713B198E8/ICNote/p22972 but none of those work.
Posted
by