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.
@"hello"Objective-C のとの違いは何"hello"ですか?
@"hello"
"hello"
クラスのインスタンスを作成しますNSString(これは適切な Objective-C オブジェクトです)。
NSString
単純な C 文字列 (タイプconst char[]) を作成します。
const char[]
@"hello" は NSString(objective c class) 定数であり、"hello" 文字列定数です