iOS is it a static or a dynamic framework?

后端 未结 2 476
粉色の甜心
粉色の甜心 2020-12-04 12:32

This might sound like a silly question but If you have a thirdParty.framework file, can you tell if it\'s static or dynamic? I mean, do they look different if you look insid

2条回答
  •  借酒劲吻你
    2020-12-04 12:34

    I use this command to list all STATIC Frameworks from a path with a list of frameworks:

    find -E . -type f -iregex ".*\.framework\/[^./]*" -exec file {} \; | grep ': current ar archive' | sed 's/.*\/\(.*.framework\).*/\1/'
    

提交回复
热议问题