Windows Azure Toolkit在iOS中显示Parser错误

时间:2012-06-07 12:33:48

标签: ios windows azure

我尝试使用以下代码片段替换为我的命名空间和领域后从网站上获取的代码片段。但是当我尝试运行应用程序时,我收到的解析器错误如

实体:第1行:解析器错误:期望开始标记,'<'找不到

WACloudAccessControlClient *acsClient =
  [WACloudAccessControlClient
          accessControlClientForNamespace:@“iostest-walkthrough”
                                    realm:@“uri:wazmobiletoolkit”];

 [acsClient showInViewController:self
                     allowsClose:NO
           withCompletionHandler:^(BOOL authenticated)
 {
    if (!authenticated) {
        NSLog(@"Error authenticating");
    } else {
        WACloudAccessToken *token = [WACloudAccessControlClient sharedToken];
        NSString *securityToken = [token securityToken];
    }
  }];

我无法清楚地理解这个问题。

请以示例指导我。谢谢

1 个答案:

答案 0 :(得分:0)

我建议在这里查看样本:

https://github.com/WindowsAzure-Toolkits/wa-toolkit-ios

你也可以看一下这个开始:

http://www.wadewegner.com/2011/05/windows-azure-toolkit-for-ios/

我的猜测是你没有#import你需要的东西。