0

最近我开始在我的 IOS 中使用 .NET 的 REST Web 服务。按照我在.NET中创建网络服务的方式

Service1.cs 文件

using System;
using System.ServiceModel.Web;

namespace WcfJsonRestService
{
    public class Service1 : IService1
    {
        [WebInvoke(Method = "GET", 
                    ResponseFormat = WebMessageFormat.Json, 
                    UriTemplate = "data/{id}")]
        public Person GetData(string id)
        {
            // lookup person with the requested id 
            return new Person()
                       {
                           Id = Convert.ToInt32(id), 
                           Name = "Leo Messi"
                       };
        }
    }

    public class Person
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }
}

我已经用谷歌搜索了这些东西,但理解起来非常复杂,因为我从未接触过 iOS 中的 Web 服务概念。所以任何人都可以指导我如何以及在何处调用这个 Web 服务,只需在其中显示一个返回字符串在带有 Xcode 4.5 的 iOS 设备(IPAd)的标签上。只是我想构建的演示应用程序

4

1 回答 1

3

您已经获得了 WCF JSON 端点,现在您需要在 IOS 应用程序中使用该端点生成的 JSON。这是有关如何做到这一点的教程。

于 2013-03-30T06:50:59.730 回答