0
다음은 내 ICloudService 공용 클래스 AzureCloudService입니다. ICloudService { MobileServiceClient client;Xamarin은 iPad의 iOS azure 모바일 라이브 플레이어를 형성합니다. "No Body on Method", NInterpretException
public AzureCloudService()
{
Microsoft.WindowsAzure.MobileServices.CurrentPlatform.Init();
client = new MobileServiceClient("https://xxxxxxxxxxxxxx.azurewebsites.net");
}
public ICloudTable<T> GetTable<T>() where T : TableData
{
return new AzureCloudTable<T>(client);
}
}
'client = new'줄을 제거하면 응용 프로그램이로드되고 그렇지 않으면 아래 오류가 발생합니다.
Vizualization Error
No body on method
Microsoft.WindowsAzure.MobileServices.IApplicationStorage
Microsoft.WindowsAzure.MobileServices.IPlatform::get_ApplicationStorage() (NInterpretException)
정확한 문제는 무엇입니까? [this] (https://developer.xamarin.com/guides/xamarin-forms/cloud-services/consuming/azure/)를 확인 했습니까? –
예, 우리는 Azure 모바일 서비스를 사용했으며 Android 시뮬레이터 및 장치에서 정상적으로 작동합니다. MobileServiceClient를 초기화 한 경우에만 Azure 모바일 앱을 iPad에서 실행할 수 없습니다. –