Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. NSString *translated = NSLocalizedStringFromTable("key",nil,nil);
  2.  
  3. NSString *translated = NSLocalizedStringFromTableInBundle("key",nil,myBundle,nil);
  4.  
  5. NSString *myBundlePath = "the path to the downloaded bundle";
  6. NSBundle *myBundle = [NSBundle bundleWithPath:myBundlePath];
  7. NSString *translated = NSLocalizedStringFromTableInBundle("key",nil,myBundle,nil);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement