Orderella / PopupDialog

A simple, customizable popup dialog for iOS written in Swift. Replaces UIAlertController alert style.
http://www.mwfire.de
Other
3.95k stars 522 forks source link

Example can't run successfully after cocoapod install. #378

Open jiexishede opened 1 year ago

jiexishede commented 1 year ago

Please fill out this template when filing an issue. All ℹ symbols should be replaced with information on the issue. Please remove this line and all above before submitting.

Report

Environment

Please provide information on your development environment, so we can build with the same scenario.

Dependency management

If you are not using any dependency managers, you can remove this section.

What did you do?

cocoapod install

run Example then "ld: library not found for -lswiftXCTest clang: error: linker command failed with exit code 1 (use -v to see invocation)"

kallipigous commented 1 year ago

This is a problem with cocoapods I think. for the time being. The Workaround is to update all the generated ...-frameworks.sh files to add the -f flag to the call to readlink. In other words, need to replace: source="$(readlink "${source}")" with source="$(readlink -f "${source}")"