What is the advantage of using CocoaPods?

后端 未结 3 1149
说谎
说谎 2020-12-31 03:03

A lot of the pods can be installed \"manually\" by simply dragging some files to the project. To me, this seems like a more convenient way to install a pod.

If I use

3条回答
  •  轮回少年
    2020-12-31 03:46

    CocoaPods are come up with one command which links to set all your dependencies, one pod file, list all libraries you want to use and just run pod install everything cocoaPods does for you.

    No more headache to set the same framework manually as well if updates were there then also cocoa pods managed by them self.

    Project sharing/uploading will be easy as all framework are included virtually with one command where previously after adding framework we need to share the whole project with adding up all framework which is added in the App and if some files are not linked or not shared properly - other developers do waste their great amount of time to resolve these error.

    Library search path, header path, and framework everything is handled by CocoaPods where previously a developer needs to take care for such things which are consuming and difficult to manage.

    Also Just review one file which library used in project instead of check whole framework and search all of them at different places of GitHub.

    CocoaPods make developer life easy to install dependencies and make coding with an easy way.

    I hope this information helps you :)

    Happy Coding!

提交回复
热议问题