Is there a way to expose to users a reset all tips after tip center is setup?
Think a 'help' 'faq' or 'onboarding' where the user might want to see it again during the current app run, not after the next launch. I didn't see anything like this back in 2024 when I wrote this feedback so I assume it isn't a supported workflow with the current API.
FB14080356
Yes! TipKit has a couple of options that you could leverage.
If you wanted a targeted approach, you could leverage the resetEligibility() method. This would allow you to reset Tips that are specific to a feature without resetting all the others in your app.
Additionally, you can always call resetDatastore() which would reset all of TipKit's datastore. For this to take effect you'd need to call this before your Tips.configure() call.
Thank you!