gpt4 book ai didi

iphone - 添加 NSInteger 对象到 NSMutableArray

转载 作者:太空狗 更新时间:2023-10-30 03:35:51 24 4
gpt4 key购买 nike

我有一个 NSMutableArray

@interface DetailViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {

NSMutableArray *reponses;
}
@property (nonatomic, retain) NSMutableArray *reponses;

@end

我正在尝试在我的数组 NSInteger 对象中添加:

@synthesize reponses;



NSInteger val2 = [indexPath row];
[reponses addObject:[NSNumber numberWithInteger:val2]];
NSLog(@"the array is %@ and the value is %i",reponses, val2);

对象没有添加到数组中是行不通的,这是控制台显示的内容:

the array is (null) and the value is 2

最佳答案

@Omz:是的。确保已分配并初始化数组。请检查以下代码

NSMutableArray *array = [[NSMutableArray alloc] init];
NSInteger num = 7;
NSNumber *number = [NSNumber numberWithInt:num];
[ar addObject:number];
NSLog(@"Array %@",array);

我已经检查过了,它有效。如果不再需要数组,请确保释放它。

关于iphone - 添加 NSInteger 对象到 NSMutableArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8600841/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com