iOS 可以在release时不添加某个第三方的framework吗?只debug时添加?不想手动删除。
Of course you can, just use multiple Targets. In this way, you can configure different Linked Frameworks and Libraries for each target. One target is used for testing, and one target is used for packaging or creating release versions.
Is there any other way?
Is it feasible?
Of course you can, just use multiple Targets.
In this way, you can configure different Linked Frameworks and Libraries for each target. One target is used for testing, and one target is used for packaging or creating release versions.
Is there any other way?
if DEBUG
impor XXX
endif
Is it feasible?