エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Dancing in the Debugger — A Waltz with LLDB · objc.io
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Dancing in the Debugger — A Waltz with LLDB · objc.io
Have you ever been stuck trying to understand your code and logged the contents of a variable? NS... Have you ever been stuck trying to understand your code and logged the contents of a variable? NSLog(@"%@", whatIsInsideThisThing); Or skipped a function call to simplify the behavior of the program? NSNumber *n = @7; // theFunctionThatShouldReallyBeCalled(); Or short-circuited a logical check? if (1 || theBooleanAtStake) { ... } Or faked the implementation of a function? int calculateTheTrickyVal