一.修改類名前綴
- 1.需要寫一個python腳本笆焰。
最簡潔方便的方法直接創(chuàng)建一個.text文本,把下面的代碼復(fù)制進(jìn)去,然后把后綴改成.py即可税朴。
#!/usr/bin/env python
import os
for dirpath, _, filenames in os.walk('.'):
for filename in filenames:
if filename.startswith('SC'):
oldFile = os.path.join(dirpath, filename)
newFile = os.path.join(dirpath, filename.replace('SC', 'SD', 2))
print newFile
inFile = open(oldFile)
outFile = open(newFile, 'w')
replacements = {'SC':'SD'}
for line in inFile:
for src, target in replacements.iteritems():
line = line.replace(src, target)
outFile.write(line)
inFile.close()
outFile.close()
os.remove(oldFile)
filename.replace是把SC替換成SD
2.把這個 app.py 放到 SDApp.xcodeproj 同級目錄下碍扔,并執(zhí)行python app.py
3.最后瘩燥,只需做最后一步小小的操作:打卡 xcode 將紅色部分文件刪除,并將改名后的文件導(dǎo)入工程不同,Add Files to " "厉膀。
參考:https://blog.csdn.net/qq_23292307/article/details/80915654