I'm trying, for the first time in my life, to contribute to open source software. Therefore I'm trying to help out on this ticket, as it seems to be a good "beginner ticket".
I have successfully got the string from the Twitter API: however, it's in this format:
<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>
What I want to extract from this string is the URL (http://twitter.com
) and the name of the Twitter client (Tweetie for Mac
). How can I do this in Objective-C? As the URL's aren't the same I can't search for a specified index, and the same applies for the client name.