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.
cocoa フレームワークを使用して、Mac OS でタイトル ウィンドウを設定したいと考えています。タイトルは「Test™.
「テスト」の先頭に「TM」を設定できますか?
はい、このようにできます。
NSString *test = @"Test\u2122"; [self.window setTitle:test];
これもうまく機能しています。
[self.window setTitle:@"Test™"];