Apple Developer Document
-
[개발자 문석읽기] UIImageiOS 2020. 10. 10. 16:00
의역과 오역이 있을 수 있습니다. 참고해서 봐주세요 :) UIImage 는 앱에서 이미지 데이터를 관리하는 객체입니다. 앱은 제한된 메모리를 사용하기 때문에 image 다루는 일은 굉장히 중요합니다. 그럼에도 제대로 모르고 사용했던 것 같아요 :) 오늘은 UIImage문서를 정독해보겠습니다. ‼️ 핵심 요약 임에도 꽤 길군요.. 정말 다 중요한 내용 같습니다 ;) UIImage는 모든 포멧을 지원하긴 하지만 PNG와 JPEG에 최적화 되어있다. 특히 원본 손실이 없는 PNG가 권장된다. UIImage는 반드시 데이터가 필요하다. 빈 데이터나 draw contents로는 UIImage를 만들 수 없다. (단, UIKit은 UIGraphicsGetImageFromCurrentImageContext()를 제공..
-
[개발자 문서읽기] Concurreny Proramming Guide - 1iOS 2020. 8. 16. 16:27
공부하며 번역한 내용입니다. 오역과 의역이 있을 수 있습니다. 정확한 내용은 원문을 참고해주세요 :) 애플 doccument Introduction Introduction Concurrency is the notion of multiple things happening at the same time. With the proliferation of multicore CPUs and the realization that the number of cores in each processor will only increase, software developers need new ways to take adva developer.apple.com 도입 Concurrency 란 여러가지 일이 동시에 일어나는 개념이다..