objective c - How do I load a string table from outside application bundle on iOS? -


I know how to load an application string table from an application file, not an application resource bundle Or any other bundle.

Do you mean something

  NSString * path = [[ NSBundle mainBundle] pathForResource: @ "fileName" type: @ "File Extension"];   

This will give you the name of the file file from the file bundle. File Extension ...

Comments