You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But I do not see a way to dismiss it. We have a scenario where an incoming push notification triggers a deep link into our application and I want to make sure that when this deep linking occurs that we ask the user if they would like abandon entering feedback and if so dismiss the feedback view controller appropriately.
I thought that the absence of a call to dismiss the feedback view controller in the api indicated that it was modal and could be dismissed using either dimissModalViewControllerAnimated: or dismissViewControllerAnimated:completion: but these do not appear to work. I see now from looking at the code in GitHub that views are being added into the root window (mostly to support screen capture I think) and that currently the only dismissal is by user interaction with the cancel button.
The text was updated successfully, but these errors were encountered:
Unless I'm crazy and I just don't see it, there is no public API for dismissing the FeedbackViewController as of version 0.4.7.
I can present the view controller:
[[ATConnect sharedConnection] presentFeedbackControllerFromViewController:someViewController];
But I do not see a way to dismiss it. We have a scenario where an incoming push notification triggers a deep link into our application and I want to make sure that when this deep linking occurs that we ask the user if they would like abandon entering feedback and if so dismiss the feedback view controller appropriately.
I thought that the absence of a call to dismiss the feedback view controller in the api indicated that it was modal and could be dismissed using either dimissModalViewControllerAnimated: or dismissViewControllerAnimated:completion: but these do not appear to work. I see now from looking at the code in GitHub that views are being added into the root window (mostly to support screen capture I think) and that currently the only dismissal is by user interaction with the cancel button.
The text was updated successfully, but these errors were encountered: