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.
こんにちは、int値をNSStringに変換して正しい値を取得する方法に固執しています
unsigned int があります
unsigned int r = 0xEFF;
@"3839" ではなく、@"EFF" のような NSString を使用したい
printf と同じフォーマット文字列を使用できます。
NSString* newString = [NSString stringWithFormat:@"%x", r];