首页 > 解决方案 > 如何查看 cocoapods 链接到的所有框架

问题描述

例如,我使用“AmazonAd”吊舱,在这里(https://developer.amazon.com/docs/mobile-ads/mb-ios-quick-start-guide.html)它表明我需要添加这些框架,我知道 cocoapods 为我做这件事,但是有没有一种方法可以在我的实际 xcode 项目中看到它们列出了 cocoapods 为我链接的框架?如果尚未链接 AdSupport.framework、CoreLocation.framework、SystemConfiguration.framework" 等,请添加以下框架。

标签: iosxcodecocoapods

解决方案


请参阅podspec中的框架:

  "frameworks": [
    "AdSupport",
    "CoreLocation",
    "SystemConfiguration",
    "CoreTelephony",
    "MediaPlayer",
    "EventKit",
    "EventKitUI",
    "StoreKit",
    "QuartzCore",
    "SafariServices",
    "JavaScriptCore"
  ],

推荐阅读