use_frameworks! target "ターゲット名" pod 'FoldingCell' end post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |configuration| configuration.build_settings['SWIFT_VERSION'] = "3.0" end end end 画面の用意 今回使うTableViewを用意しておきます。StoryboardにUITableViewControllerを配置し、クラスファイルを作成します。また、TableViewのStyleはGroupedにしておきます。 実装 FoldingCell用のCellはStoryboardまたはnib

