iOS开发-- 使用NSNumber将int、float、long等数据类型加入到数组或字典中

// 设置值
NSNumber *number=[NSNumber numberWithInt:45];
// 取值
NSLog(@"NSNumber %d",[number intValue]); 

 

转载于:https://www.cnblogs.com/feiling/p/4721387.html

你可能感兴趣的:(移动开发,swift)