16

Xcodeでブレークポイントをコピーして貼り付ける方法はありますか?

私が尋ねている理由は、「評価後に自動的に続行する」ように設定されたブレークポイントがあり、いくつかのアクションが関連付けられているためです。コード内の複数の場所で同じブレークポイントの動作/アクションを使用したいと考えています。それをやり直す代わりに(ブレークポイントの設定、カスタマイズ)10回(またはそれ以上の面倒なことができます)、コピーして貼り付けるだけです!?

4

3 に答える 3

7

I've found a solution, though it might not be easier. All of the breakpoints are saved in an XML file inside your Xcode project. To find the file, select your project file and choose "Show Package Contents", then go to:

xcuserdata/(YourNameHere).xcuserdatad/xcdebugger/

You can open the breakpoints file and copy /paste their XML. You can then change the file and line numbers of the breakpoints.

于 2014-07-11T20:17:20.310 に答える