iOS - Core Data attribute types
iOS 에서 Core Data 를 사용할 때, attribute 들의 type 들이 각각 무슨의미인 지 궁금 했다. Integer 16, Integer 32, and Integer 64 data types are for storing signed integers. The range of values that these types are able to store is as follows:Integer 16:-32,768 to 32, 767Integer 32:-2,147,483,648 to 2,147,483,647Integer 64:-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807Decimal, Double, and Float data types are fo..
더보기