Thursday, December 15, 2016

iOS Collection element of type 'double' is not an Objective-C object

http://stackoverflow.com/questions/22758048/collection-element-of-type-double-is-not-an-objective-c-object

위의 에러메세지는 컬렉션에는 double 타입이 들어가지 못한다는 에러 메세지이다.
그래서 NSNumber로 박싱을 해야 한다.

박싱은 간단하게 @(doubleTypeVariable) 또는 [NSNumber numberWithDouble:doubleTypeVariable] 이렇게 할수 있다.

No comments:

Post a Comment