我一直在尋找關於如何去編碼wcf服務請求的在線文章/教程。我已經上傳到我的服務器下列Web服務:客觀c調用wcf休息服務請求
[ServiceContract]
public interface IUserAccountService
{
[OperationContract]
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, UriTemplate = "UserLogIn?id={email}&password={password}")]
AuthenticationToken UserLogIn(string email, string password);
}
我得到了一個我一直在尋找的物品或使相關的調查問卷真的很困惑:
如:
-http://stackoverflow.com/questions/1557040/objective-c-best-way-to-access-rest-api-on-your-iphone
-http://計算器.COM /問題/ 8650296/nsjsonserialization的解析 - 響應 - 數據
最後偶然發現了這一點:
http://iam.fahrni.ws/2011/10/16/objective-c-rest-and- json/
所以我的問題是,我真的需要使用restful框架來調用api嗎?如果是的話哪一個更值得推薦 - ASIHttpRequest或RestKit或AFNetworking?或者我可以簡單地使用我提到的最後一個鏈接自己做?我真的不知道從哪裏開始。
謝謝你的時間。
入住這一點 - http://stackoverflow.com/questions/8922296/is-restkit-a-good-replacement-for-asihttprequest – rishi