Class MyJavaClass = NSClassFromString(@"FooBar")

When invoking methods on the class that take arguments, you need to add a colon
to the method name.

For example, a method like:

public String getContent()

.... would be accessed as ....

response = [connection getContent];

---

Or:

public void URL(String tempURL)

....would be invoked as....

[connection URL: anUrlString];

---

I don't know what the rules are for more than one argument?  Additional colons?
Or varargs???

b.bum

Reply via email to