15로 업데이트 후 DT_TOOLCHAIN_DIR 에러가 발생하여 Podfile에서 아래 코드로 변경하고 pod install하여 문제 해결 post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| xcconfig_path = config.base_configuration_reference.real_path xcconfig = File.read(xcconfig_path) xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR") File.open(xcconfig_path, "w") { |f.....