Install PythonSwiftLinkCLI

cd <download folder>
chmod 755 PythonSwiftLinkCLI/PythonSwiftLinkCLI
cp -rf PythonSwiftLinkCLI /usr/local/bin
ln -s /usr/local/bin/PythonSwiftLinkCLI/PythonSwiftLinkCLI /usr/local/bin/psl

Setup Kivy-iOS:

https://kivy.org/doc/stable/guide/packaging-ios.html

if folder/project is already created then you can skip this part

Setting up kivy-ios folder with PythonSwiftLinkCLI:

make sure your in the root path of your folder, in the terminal window

psl setup
psl project setup <project name remember -ios>

To make make everything much easier in the future when changing wrapper files / rebuilding them , goto Build Phases

click the + and select New Run Script Phase Drag the script as far up you can (should be 3rd position now) and paste the following inside it the code block:

CLI=psl

for FILE in $PROJECT_DIR/wrapper_sources/*.py; do

echo $FILE; 
$CLI build $FILE "$PROJECT_DIR"/wrapper_builds

done

$CLI project update $PROJECT_DIR