Using this code I am trying to get the data from Templates.plist file but I am getting null value in array.
//from plist NSString *path = [[NSBundle mainBund
To get a plist into a mutable array, use this class method:
NSMutableArray *array = [NSMutableArray arrayWithContentsOfFile:path];
Then, add/delete strings from the array. To save the array back to a plist, use:
[array writeToFile:path atomically:YES];