指定したインデックスにオブジェクトを追加するにはどうすればよいですか? 私の問題で
NSMutableArray *substring
インデックスとオブジェクトが交互に含まれておりstr
、この配列から取得したインデックスに従って別の配列に追加する必要があります。
NSMutableArray *str=[NSMutableArray new];
if ([substrings containsObject:@"Category-Sequence:"])
{
NSString *index=[substrings objectAtIndex:5];
//[substrings objectAtIndex:5]
gives me integer position at which I need to add object in `str` array,
gives 5,4,8,2,7,1 etc
NSString *object=[substrings objectAtIndex:1];
//[substrings objectAtIndex:1] gives object,gives NSString type of object
[str insertObject:object atIndex:(index.intValue)];
}
それを達成するためのいくつかの方法を提案してください。
前もって感謝します!