iOS Question How to use external library or framework in inline [Objective C]

hanyelmehy

Active Member
Licensed User
Longtime User
How to use external library or framework in inline [Objective C]
for example if i want to use GPUImage ,i must use #import "GPUImage.h" ,where to put .h and .m files to make it available to my inline [Objective C]
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
You are asking about this project: https://github.com/BradLarson/GPUImage right?

1. You will need to first compile it and build the static library.
2. Copy the a and h files to the Mac's libs folder.
3. Edit the xml of one of the referenced libraries and add: <dependsOn>GpuImage</dependsOn>
The a file name should be libGpuImage.a
 
Upvote 0
Top