而不是启动segue,然后尝试确定是否应异步执行segue,只需在不触发segue的情况下处理用户交互,确定是否应执行segue,以及
然后
启动segue。
我无法给出确切的代码,因为我对Xamarin了解不够,但伪代码类似于:
handleHandleButtonTap() {
initiateBackgroundCheckWithHandler( isAllowed(bool) {
if isAllowed {
performSegueWithIdentifer("SomeSegue") // You need to dispatch this on the main queue
}
})
}
Xamarin/C#示例:
void SomeButton_TouchUpInside(object sender, EventArgs e)
{
bool isAllowed = false;
InvokeInBackground(() =>
{
// Do some task... and optionally assign isAllowed to true...
if (isAllowed)
DispatchQueue.MainQueue.DispatchAsync(() => PerformSegue("SomeSegue", this));
});
}