https://developer.apple.com/videos/play/wwdc2018/416

Prerequisites

Screen Shot 2022-05-28 at 9.26.02 PM.png

Why reduce memory

Memory footprint

Pages

Screen Shot 2022-05-29 at 4.11.39 PM.png

clean or dirty의 예시

int array = malloc(20000 * sizeof(int)); // 동적 메모리 할당
array[0] = 32
array[19999] = 64