andrewmore
andrewmore

Reputation: 225

Title window "Test™" in mac os

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

Answers (1)

Ramaraj T
Ramaraj T

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

Related Questions