2

我需要在 Monotouch 中异步调用 web 服务,因为 UIAlertView 仅在工作完成后才会显示。

当前代码(伪)

Class LoginviewController
{
        void Login(credentials)  
        {  
            showAlert("Logging in") ;   
            bool authenticated = service.Authenticate(Credentials);  
        }
 }       

 class Service
 {
       Public bool Authenticate(object Credentials)
       {
          object[] results = this.Invoke("GetAuth", Credentials)
       }
 }

我正在将 Service 方法移至异步模型,其中 Authenticate 由 Authenticate 组成BeginAuthenticate(), EndAuthenticate(), AuthenticateAsync(), OnAuthenticateOperationCompleted(),当然Authenticate().

当所有这些都完成后,我需要在 LoginViewController 上运行 OnAuthenticateCompleted(),所以我将使用BeginInvokeOnMainThread(delegate....

这就是我卡住的地方。

如何获取OnAuthenticateCompleted()从服务类执行的 LoginViewController 类实例中的方法?

编辑:解决方案:

添加了一个在 Login() 中连接的 OnAuthenticateCompleted 事件处理程序,并调用 AuthenticateAsync() 方法而不是 Authenticate()。

Class LoginviewController
    {
            void Login(credentials)  
            {  
                showAlert("Logging in") ;   
                service.AuthenticateCompleted += new GetAuthenticationCompletedEventHandler(OnAuthenticateCompleted);
                service.AuthenticateAsync(Credentials);  
            }

            public void OnAuthenticateCompleted(obj sender, GetAuthenticationCompletedEventArgs args)
            {
                bool authenticated = (bool)args.Results;
                //do stuff
                hideAlert();
            }
     }     
4

1 回答 1

2

您不是LoginViewController.OnAuthenticateCompleted从服务类执行,而是在完成的事件处理程序中执行它。

class LoginViewController
{
    void Login (credentials)
    {
        service.AuthenticateAsync (credentials, LoginCompletedCallback);
        }

    }
    void LoginCompletedCallback ()
    {
        BeginInvokeOnMainThread (OnAuthenticateCompleteded);
    }
}
于 2012-10-29T11:44:09.570 回答