How can i add Twitter 'Follow' button (with it functionality like on website) in Cocoa application (not iOS)? It looks like on below image:

How can i add Twitter 'Follow' button (with it functionality like on website) in Cocoa application (not iOS)? It looks like on below image:

You could just make a button that opens a link in a browser. I got the following code from here:
NSString *applicationURL = @"https://twitter.com/intent/user?screen_name=vitaliy";
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:applicationURL]];