我有这个Swipe扩展方法:
View.Swipe(UISwipeGestureRecognizerDirection.Right).Event += (s, r) =>
View.RemoveFromSuperview();
使View.RemoveFromSuperview()
屏幕变为空白。我正在尝试返回上一个视图,我需要为此调用什么命令/方法?
我通过以下方式推送当前视图:
AppDelegate.Current.NavController.PushViewController(new SingleIssueController(Item), true);