Advertisement
boardmain

Convert xib 2 nib

Sep 19th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #!/bin/bash
  2. for file in *.xib
  3. do
  4. echo "Converto $file"
  5. ibtool $file --compile ${file%%.*}.nib --output-format binary1
  6. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement