use_frameworks! target "ターゲット名" pod 'LTMorphingLabel', :git => 'https://github.com/lexrus/LTMorphingLabel.git', :branch => 'swift3' 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 現時点(2017/1/4)ではmasterブランチはSwift3には対応していません。そのため、swift3ブランチを指定する必要があります。今後、

