Ios 有人能解释一下如何使用Swiftshield混淆代码库吗?

Ios 有人能解释一下如何使用Swiftshield混淆代码库吗?,ios,swift,security,obfuscation,Ios,Swift,Security,Obfuscation,我已经读过了,但我仍然无法混淆完整的代码库 我正在使用此命令执行相同的操作: swiftshield -automatic -project-root ../TestApp -automatic-project-file ../TestApp/DemoTestApp.xcworkspace -automatic-project-scheme DemoTestApp 获取此错误: error: 'CustomButton' is unavailable: cannot find Swift de

我已经读过了,但我仍然无法混淆完整的代码库

我正在使用此命令执行相同的操作:

swiftshield -automatic -project-root ../TestApp -automatic-project-file ../TestApp/DemoTestApp.xcworkspace -automatic-project-scheme DemoTestApp
获取此错误:

error: 'CustomButton' is unavailable: cannot find Swift declaration for this class
@IBOutlet weak var customButton: CustomButton!
                               ^~~~~~~~~~
DemoFramework.CustomButton:2:12: note: 'CustomButton' has been explicitly marked unavailable here
我有一个自定义框架中的
CustomButton

有人能告诉我如何使用swiftshield进行代码混淆的一步一步的方法吗? 提前感谢。:)