Reputation: 225
I want to set the title window in Mac OS using cocoa framework. The title is like "Test™.
Can I set the "TM" in a top of "Test"?
Upvotes: 2
Views: 81
Reputation: 5230
Yes, you can do like this.
NSString *test = @"Test\u2122";
[self.window setTitle:test];
This is also working well.
[self.window setTitle:@"Test™"];
Upvotes: 3