user2341104
user2341104

Reputation:

Native code deployment on iOS

IIRC runtime compilation and linkage to JIT-ed native code is not allowed on iOS. I was wondering does it affect native code that was not compiled on the client machine but a remote build server and deployed and linked to internally. Is the problem "native code generated on the fly" or "native code that has not passed Apple's review process"?

Upvotes: 0

Views: 53

Answers (1)

Sergei Nikitin
Sergei Nikitin

Reputation: 788

As I know, there's no correct way to dynamic linking in iOS - it's prohibited by Apple.

Also look here please: Can you build dynamic libraries for iOS and load them at runtime?

Upvotes: 1

Related Questions