Xcode 프로젝트를 열고 마지막 대상을 복제하는 AppleScript가 필요합니다.AppleScript의 중복 Xcode 대상
일부 답변은 here과 there입니다.하지만 적어도 Xcode 9.1에서는 작동하지 않는 것으로 보입니다.
나는이 시도했다 :
do shell script "open <myproject>"
tell application "Xcode"
tell active workspace document
tell first project
duplicate last target
end tell
end tell
end tell
을하지만 실패 :
execution error: Error in Xcode: Can not set last target of project 1 of active workspace document to last target of project 1 of active workspace document. (-1006)
당신은 어떻게 할 것인가?