Reputation: 12965
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
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