zeus
zeus

Reputation: 12965

Why some libraries need to be embedded and some other not?

In ios, I don't understand why some libraries need to be embedded (like WebRTC) and some other not (like facebook)?

Upvotes: 0

Views: 129

Answers (1)

Rob Napier
Rob Napier

Reputation: 299605

Facebook's frameworks are static libraries. This is a bit unusual in iOS; most things are dynamic libraries. Static libraries are linked at build time rather than at load time, so you don't need to embed them.

Upvotes: 1

Related Questions