简体   繁体   中英

Would adding Parse to an IOS Framework cause issues?

If I am building a Framework that depends on Parse, would this cause issues for apps already using Parse and would like to use my framework? More specifically, if I initialize my Parse app in the framework, and then the app using this framework initializes Parse again, would they interfere?

Yes, they will and that's the reason CocoaPods exist, to ease the pain of dependency of frameworks. Framework must not depend on another framework is the bottom line. If you do , it will leads to collisions, if the other framework also includes that framework. I would suggest you to learn CocoaPods. The dependency problems will find the solution.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM