Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iOSアプリケーションのデバッグ中に、次を使用してオブジェクトの値を出力する方法を知っています。
印刷"変数名" po "変数名"
NSInteger、int、floatなどのオブジェクトタイプではない変数の値を出力する方法を知りたいと思いました。
ありがとう。
p intVar変数を出力 するために使用するだけです。 時々あなたはキャストする必要があります:p (CGRect)[[self view] frame]
p intVar
p (CGRect)[[self view] frame]