NSMutableArray * val;
val = [[NSMutableArray alloc] initWithCapacity:15];
/*int outlineWidth = barOutlineWidth;
int outlineHalfWidth = (outlineWidth > 1) ? outlineWidth * 0.5f : 0;
*/
for ( Bar * obj in values )
{
// calcualte the bar size
float value = [obj value];
float scale = ( value / maxValue );
// shift the bar to the top or bottom of the render line
int pointY = lineHeight + ( (lineWidth * 0.5f) * ( ( value >= 0.0f ) ? -1 : 1 ) );
int barHeight = height * scale;
NSLog(@"%d", barHeight);
CGRect barRect = CGRectMake(pointX, pointY, width, -barHeight);
[val addObject:[NSNumber numberWithInt:barHeight]];
NSLog(@"%d", val);
我想将barheight(int)添加到数组val中。 这可能吗? 在运行代码时,
session started at 2010-09-16 13:21:50 +0530.]
2010-09-16 13:21:53.791 BarGraphSample[3168:20b] 78
2010-09-16 13:21:53.797 BarGraphSample[3168:20b] 69398112
2010-09-16 13:21:53.807 BarGraphSample[3168:20b] 235
2010-09-16 13:21:53.812 BarGraphSample[3168:20b] 69398112
2010-09-16 13:21:53.813 BarGraphSample[3168:20b] 156
2010-09-16 13:21:53.814 BarGraphSample[3168:20b] 69398112
这是输出。
这里实际的高度是78,235,156, 同时打印数组val。
我变得像“69398112”
这样的价值观我该怎么办?
答案 0 :(得分:50)
您只能将对象的指针添加到NSMutableArray
。如果您使用NSNumber
类来包装整数,那么您应该能够将它添加到数组中。
int x = 10;
NSNumber* xWrapped = [NSNumber numberWithInt:x];
NSMutableArray* array = [[NSMutableArray alloc] initWithCapacity:15];
[array addObject:xWrapped];
int xOut = [[array lastObject] intValue]; //xOut == x;
希望这有帮助。
答案 1 :(得分:19)
添加一个数字。
NSNumber* foo = [NSNumber numberWithInteger:42];
或使用盒装文字:
NSNumber* foo = @(42);
然后添加foo。
答案 2 :(得分:1)
问题在于您的NSLog
字符串
NSLog(@"%d", val);
%d
实际上是integer (int)
的格式说明符。您正在传递一个NSMutableArray对象。
将NSLog
更改为
NSLog(@"%@", val);
%@
需要一个对象,这通常会打印出[myObject description]
,在这种情况下是对val数组的描述。
答案 3 :(得分:1)
将Int转换为NSNumber,然后添加到数组
答案 4 :(得分:1)