I have created a plist using .net environment and after the creation I set the encoding type as “iso-8859-1” in the plist encoding type. Then I tried to read it and show in the table view. The values are not as expected.
It is having few characters which are of incorrect encoding type.
What should I do ?
You could try to load the file as an NSString, which you could specify an encoding.
and then use the
-propertyListmethod to convert the string into a plist.But it is better to ensure you always generate UTF-8/UTF-16 on the C# side.