In my iPhone app I have a Action Sheet. I have a button which performs a Google search on a certain keyword and the other button performs a Wikipedia search (I used the openURL function to implement this), but I am not sure if it is legal to write "Google search" and "Wikipedia search" on the buttons, would there be any copyright or trademark issues involved?

I know this is not a programming related question but any help will be greatly appreciated.

Thanks in advance.

link|improve this question

62% accept rate
feedback

2 Answers

up vote 0 down vote accepted

In general, you are allowed to use names even if they're registered trademarks.

I do suggest, however, that you provide proper attribution to the copyright holders. Consider including the appropriate symbol (®, ™, etc.) next to the word, and providing full legal information in your program's "About" dialog or similar.

You would also do well to check out the specific usage guidelines published by the particular entity in question. For example, Google publishes these guidelines on the use of its web search API, and you'll likely find these are common terms.

The real issue here is probably less with using the name and more so with exposing their services.

Interestingly, iOS itself provides such an option to search Wikipedia that doesn't contain any obvious or apparent attribution:

     iOS "Search Wikipedia" option

Presumably, there's an appropriate blurb indicating that "Wikipedia" is a registered trademark of the Wikimedia Foundation, Inc. hidden somewhere under "About -> Legal".

link|improve this answer
Thanks for the answer, are you also saying that opening a google search from my app also not allowed? and also do you know how to add the trademark or registered sign to an NSString because I read through the documentation and can't seem to find it. – Peter Jan 14 '11 at 3:09
@Peter: No, I don't see any problem with a Google search. I'm just saying you should probably give Google credit for providing the search feature. Large companies like Apple and Google have specific guidelines for using services they provide and displaying their trademarks. You can find them on their website. I just gave a link to Google's above. As for adding symbols to an NSString, they're just Unicode. The registered sign is \u00AE, and the trademark sign is \u2122. So you could say @"Wikipedia \u00AE". – Cody Gray Jan 14 '11 at 5:25
Ok got it. Thanks for your help. – Peter Jan 14 '11 at 6:57
feedback

Im not completely sure whether it is legal or not, could you not just change the titles to "Search on Google" and "Search on Wikipedia" or something similar? I don't think it is illegal to use the words "Google" and "Wikipedia" in your app. But then I may be wrong...

link|improve this answer
I don't think altering the grammatical structure of the phrase would change its legality. "Search on Google" is not functionally any different from "Google Search". – Cody Gray Jan 14 '11 at 1:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.