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.
我想记录包含 NSRect 值的“frame”的值。除了在 DLog() 中使用 %@ 之外,正确的方法是什么?
DLog(@"frame = %@", frame);
Dlog(@"frame = %@", NSStringFromRect(frame));