tags:

views:

205

answers:

2

Is there a tool to get all string for NIB file on MAC OSX? Right now, I have to copy it from the NIB editor. Thanks.

A: 

not sure if it will help, but you can drag and drop :)

JT.WK
+2  A: 

If you're trying to localize the NIB file, you can use ibtool from a command shell to pull out the strings:

ibtool --export-strings-file <file>.strings <file>.nib

Dewayne Christensen