I am trying to figure out how to get one twitter feed (that would be hard coded and wouldn't change per user) to show up in a UITableView (one tweet per cell). I've tried to find some kind of tutorial or any information on where to start, but I haven't been very successful at finding anything. If anyone has implemented something like this and can offer some advise or if you know of a tutorial that covers this, it would help me out a lot!
Thanks a lot! I have two more questions though. I now have my custom cells working properly, but at the end of the tweets it shows Thanks for the... | Facebook or something of that sort because it is often posted from facebook. I would like to get rid of that link each time at the end. I know I could use
but that would only remove the first part of the link. So my question is: is there some method that removes a certain number of characters from the end of a string?
My second question is when i go to the twitter tab in my app it takes a second or two to load because it's parsing the rss feed. Does anyone know of a way to speed up that process so that there is less of a delay?
Thank you so much!!! That worked perfectly for what I need it for!
Does anyone have an idea what the date of post element of an twitter rss feed is called? I tried "date" and "created_at" but neither seem to work. What i did was:
Code:
if ([currentElement isEqualToString:@"title"]) {
[currentTitle appendString:string];
}
else if ([currentElement isEqualToString:@"created_at"]) {
NSLog(@"found date!");
[currentDate appendString:string];
}
If you have any experience with this the help would be appreciated!