Thursday, September 26, 2013

oc Why there are two ways to call methods?

The first [object callMethod]
Why is there such a
bool b;
b = isEquals (1,2);
These two methods are different?
Reply:
The first one is called as a function of the OC,
The second is the C calling form.

As objc is compatible c, so c is called by the objc is still available.

No comments:

Post a Comment