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.
我想使用可可框架在 Mac OS 中设置标题窗口。标题类似于“Test™.
我可以在“测试”的顶部设置“TM”吗?
是的,你可以这样做。
NSString *test = @"Test\u2122"; [self.window setTitle:test];
这也运作良好。
[self.window setTitle:@"Test™"];