cocoapods-1.2

How to create SDK with framework that using cocoa-pods

为君一笑 提交于 2020-07-23 08:20:29
问题 I have a framework that using with some cocoa pods. now I'm trying to create SDK from the framework, but don't show all the classes, how do I do it? 回答1: Make sure that the public keyword is in front of your class declaration - they changed the scope default from public by default to private. 来源: https://stackoverflow.com/questions/57250123/how-to-create-sdk-with-framework-that-using-cocoa-pods

How to create SDK with framework that using cocoa-pods

五迷三道 提交于 2020-07-23 08:19:10
问题 I have a framework that using with some cocoa pods. now I'm trying to create SDK from the framework, but don't show all the classes, how do I do it? 回答1: Make sure that the public keyword is in front of your class declaration - they changed the scope default from public by default to private. 来源: https://stackoverflow.com/questions/57250123/how-to-create-sdk-with-framework-that-using-cocoa-pods

How to create SDK with framework that using cocoa-pods

半城伤御伤魂 提交于 2020-07-23 08:18:10
问题 I have a framework that using with some cocoa pods. now I'm trying to create SDK from the framework, but don't show all the classes, how do I do it? 回答1: Make sure that the public keyword is in front of your class declaration - they changed the scope default from public by default to private. 来源: https://stackoverflow.com/questions/57250123/how-to-create-sdk-with-framework-that-using-cocoa-pods

Using private pod and public pod in the same project

孤街醉人 提交于 2020-01-05 08:17:36
问题 I've just pushed a private pod to my.domain.com:apps/MyPrivatePod.git . I'd like to use both this private pod and other public pods in my project platform :ios, '8.0' target 'Testing' do pod 'AFNetworking', '2.6.0 ' // This is supposed to be a public Pod pod 'MyPrivatePod', '~> 1.1' // This is the private pod I talked about end How can I achieve this? 回答1: Assume you have built the private pod refer to the official docs and push it to your private spec index repo, for example, https:/

Using private pod and public pod in the same project

蓝咒 提交于 2020-01-05 08:17:31
问题 I've just pushed a private pod to my.domain.com:apps/MyPrivatePod.git . I'd like to use both this private pod and other public pods in my project platform :ios, '8.0' target 'Testing' do pod 'AFNetworking', '2.6.0 ' // This is supposed to be a public Pod pod 'MyPrivatePod', '~> 1.1' // This is the private pod I talked about end How can I achieve this? 回答1: Assume you have built the private pod refer to the official docs and push it to your private spec index repo, for example, https:/