diff --git a/Headers/Foundation/NSObject.h b/Headers/Foundation/NSObject.h index bf62be87e..2954db6a8 100644 --- a/Headers/Foundation/NSObject.h +++ b/Headers/Foundation/NSObject.h @@ -72,6 +72,15 @@ *
*Also see OS_API_VERSION *
+ *NB. If you are changing the API (eg adding a new feature) you need
+ * to control the visibility io the new header file code using
+ * #if GS_API_VERSION(ADD,GS_API_LATEST)
+ * where ADD
is the version number of the next minor
+ * release after the most recent one.
+ * As a general principle you should not change the API with
+ * changing subminor version numbers ... as that tends to confuse
+ * people (though Apple has sometimes done it).
+ *