2017年5月

CocoaPods: pod search 搜索类库失败的解决办法

相信有的小伙伴已经成功安装了CocoaPods,也可以正常使用,然而会发现执行pod search来搜索类库信息时,却总是[!] Unable to find a pod with name, author, summary, or descriptionmatching '······'。在此我分享一下自己的经验,希望能给您提供帮助。(此贴是在成功安装CocoaPods,但不能pod search搜素类库的情况下探讨问题)。

  1. 执行pod setup

    • 其实在你安装CocoaPods执行pod install时,系统会默认操作pod setup,然而由于中国强大的墙可能会pod setup不成功。这时就需要手动执行pod
      setup指令,如下:
    • 终端输入:pod setup 会出现Setting up CocoaPods master repo,稍等几十秒,最底下会输出Setup completed。说明执行pod
      setup成功。
    • 如果pod search操作还是搜索失败,如下:
      终端输入:pod search AFNetworking

    输出:Unable to find a pod with name, author, summary, or descriptionmatching 'AFNetworking' 这时就需要继续下面的步骤
    了。

  2. 删除~/Library/Caches/CocoaPods目录下的search_index.json文件

    • pod setup成功后,依然不能pod search,是因为之前你执行pod search生成了search_index.json,此时需要删掉。
    • 终端输入:rm ~/Library/Caches/CocoaPods/search_index.json
  3. 删除成功后,再执行pod search。

    • 执行pod search
    • 终端输入:pod search afnetworking(不区分大小写)
    • 输出:Creating search index for spec repo 'master'.. Done!,稍等片刻······就会出现所有带有afnetworking字段的类库。

原文:[
CocoaPods: pod search 搜索类库失败的解决办法](http://blog.cocoachina.com/article/29127)

动态更改 UITableView Footer 高度

override 所在UIViewController的 viewDidLayoutSubviews方法

override func viewDidLayoutSubviews() {
    super.viewDidLayoutSubviews()

    if let footView = tableView.tableFooterView {
    //footerContentView 是footerView的内容视图,它使用自动布局来自适应高度,然后在代码里面获取高度变更footerView 的高度
        let height = footerContentView.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize).height
        if height != footerView.frame.height {
            print("new height=\(height)")
            footView.frame.size.height = height
            tableView.tableFooterView = footView
        }
    }
}