I am translating a big project from Java to objective-C. When there are primitive data types, they will be translated to JNI Types instead of objective-C data types, such as boolean -> jboolean.
However, it is written in the documentation that the mapping should be directly from boolean to BOOL.
What I expect is it could translate from boolean to BOOL directly. Is it possible?