코딩

Xcode playground 사용하기 (+문제점) 본문

Swift

Xcode playground 사용하기 (+문제점)

ssooyn_n 2021. 6. 29. 21:06

1. Xcode실행 -> File -> New -> Playground

 

2. Blank를 선택해준다.

3. 출력하고 싶은 값을 써주고 play버튼을 눌러준다.

줄 번호에 나타나는 play버튼을 누르면 하단 창에 결과 값이 출력된다.

 

 

이렇게 Xcode에서 playground를 실행하는 방법은 아주쉽다.

하지만 쓰다보니 문제점을 느꼈는데 

간단한 print를 하더라도 running 타임이 너무 길다.

 

 

그래서 구글로 검색해 보았더니 

https://developer.apple.com/forums/thread/73890

 

Playgrounds unresponsive/slow/unhe… | Apple Developer Forums

Is it just me or Playground on Mac is super slow and unresponsive (keeps running forever, and deleting the Derived Data folder doesn't help)? Also, on both Mac and iPad Playgrounds it is super fragile. Even though the code works fine, it returns an error:

developer.apple.com

 

원래 느리다고 한다..

해결 방법은 아이패드를 사용해라 였는데

그럴 바엔 그냥 리트코드 사이트를 추천한다.

 

 

https://leetcode.com/playground/UpwhGDg6

 

Playground - LeetCode

Compile. Run. Debug.

leetcode.com

 

 

 

결론

간단한 알고리즘을 사용할거면 리트코드를 사용하는게 낫다.

(리트코드는 대신 자동완성기능이 없다.)

 

'Swift' 카테고리의 다른 글

Swift 공공데이터 parsing  (0) 2021.07.09
Swift combination구현  (0) 2021.07.01
Swift 딕셔너리에서 값 가져오기  (0) 2021.06.30
Swift String 자르기  (0) 2021.06.30
Comments