Can Delphi XE4 import iOS ObjC Class ? ( Static Library *.a )
问题 Can Delphi XE4 import iOS ObjC Class ? ( Static Library *.a ) ObjC Code : test.a // test.h --------------------------------------------------------------- #import <Foundation/Foundation.h> @interface mycalc : NSObject { BOOL busy; } - (int) calc : (int) value; @end // test.m -------------------------------------------------------------- #import "test.h" @implementation mycalc -(int) calc:(int)value { busy = TRUE; return ( value + 1); } @end Delphi XE4 Code "Unit1.pas" for Testing Unit1;