0
하나의 서비스 REST/JSON이 있습니다. 모양은 다음과 같습니다.두 개의 매개 변수 (NSString)를 전달하고 Rest-Kit를 사용하여 텍스트 - 일반을 수신하는 방법은 무엇입니까?
@GET
@Produces(MediaType.TEXT_PLAIN)
@Path("/login/{userName}/{password}")
public synchronized String login(@PathParam("userName") String userName,
@PathParam("password") String password);
IOS에서 RestKit을 사용하여 어떻게 이것을 소비합니까?
시도한 코드와 잘못되어있는 코드를 게시하십시오. – Wain
[documentation] (https://github.com/RestKit/RestKit#object-request)에 따라, 당신이하고 싶은 일을하는 데 도움이 될 수있는 예제가 있습니다. – kgdesouz