Java コードを Objective-C に変換しようとしています。以下のクラスは、TestCodeRequest の拡張です。これを客観的な C の同等物に変換する方法を考えています。Java は静的に型付けされ、規則よりも構成が優先されるため、少し混乱しています。一方、Objective-C は動的に型付けされ、構成よりも規約が優先されます。以下にサンプルコードがあります。どんな小さなヒントでも本当に素晴らしいはずです。
package com.TestCode.api;
import java.io.IOException;
import oauth.signpost.exception.OAuthCommunicationException;
import oauth.signpost.exception.OAuthExpectationFailedException;
import oauth.signpost.exception.OAuthMessageSignerException;
import org.json.JSONObject;
public class Categories extends TestCodeRequest {
public Categories(String apiKey, String apiSecret) {
super(apiKey, apiSecret, "categories");
}
public Categories field(Object... fields) {
super.field(fields);
return this;
}
public JSONObject getCategories() throws OAuthMessageSignerException, OAuthExpectationFailedException, OAuthCommunicationException, IOException {
return this.get();
}
public Categories categoriesField(Object... fields) {
return this.field(fields);
}
}