This is a fundamental part of my app, infact it is a function.
-(void)appendArguments:(NSString *)argument {
NSString *temp = [NSString stringWithFormat:_path, argument;
}
But this is not possible. Here _path is an instance variable that holds a string with integer arguments. The string argument holds integers, for example:
_path = @"I got %d apples, ate %d, I am left with %d";
argument = @"7,3,7-3";
*temp = [NSString stringWithFormat:_path, argument;
Can we make an array of arguments as objects, and replace them with pointer argument.
My app is now on hold because of this.
You can use the
va_list.