如何将变量字符串值发送到目标 c 中的 nsmutable 数组?
如果global
是我的NSMutableArray
并且temp
是包含字符串的变量,那么
[global addObject:@"%@",temp];
不工作请检查家伙并回复。
如何将变量字符串值发送到目标 c 中的 nsmutable 数组?
如果global
是我的NSMutableArray
并且temp
是包含字符串的变量,那么
[global addObject:@"%@",temp];
不工作请检查家伙并回复。
如果你想添加一些格式化的字符串,你可以像这样使用
[global addObject:[NSString stringWithFormat:@"%@",temp]];
否则DrummerB 的答案是绝对有效的。
您需要先创建一个对象。
它可能是一个NSString
(如你的情况),或者可能是任何诸如数组、字典等之类的东西。
然后将其添加到数组中。但数组必须是NSMutableArray
.
[global addObject:yourObject]; //will add at last
或者
[global addObject:yourObject atIndex:desiredIndex];//insert at the given index
如果是string,可以使用string类下的很多方法来形成,,likeinitWithString
等stringWithFormat
。
NSString *yourObject=.....;//create an object using any of the class or instance method of NSString.