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.
*xclassのオブジェクトがあるとしますIllustration。を使用してx、そのクラス名を文字列に抽出したいので、@"Illustration". これを行うことは可能ですか?
*x
Illustration
x
@"Illustration"
NSStringFromClass を使用します。
NSString* className = NSStringFromClass([x class]); NSString* className = [[x class] description];
NSStringFromClass([x クラス]) を使用できます