Can iOS be released without adding a third-party framework? Only added when debugging? Don't want to delete manually.
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?