Hi. I'd like to turn a RSS feed into a blog app. Are there any templates for doing this?
Chase817 macrumors member Original poster Jul 6, 2008 95 0 Nov 3, 2008 #1 Hi. I'd like to turn a RSS feed into a blog app. Are there any templates for doing this?
D developer.in macrumors newbie Nov 5, 2008 8 0 Nov 5, 2008 #2 Chase817 said: Hi. I'd like to turn a RSS feed into a blog app. Are there any templates for doing this? Click to expand... There's a sample code provided with the SDK called TAB RSS Reader which does the same thing
Chase817 said: Hi. I'd like to turn a RSS feed into a blog app. Are there any templates for doing this? Click to expand... There's a sample code provided with the SDK called TAB RSS Reader which does the same thing
Chase817 macrumors member Original poster Jul 6, 2008 95 0 Nov 5, 2008 #4 ok, I made it, but is there a way to load stories in an inbuilt browser (uiwebview) instead of safari?
ok, I made it, but is there a way to load stories in an inbuilt browser (uiwebview) instead of safari?
E Encryptic macrumors member Jul 27, 2008 46 0 Nov 5, 2008 #5 There's actually a company that specializes in this. http://apploop.com/ I've never used it personally, but it's a cool technology.
There's actually a company that specializes in this. http://apploop.com/ I've never used it personally, but it's a cool technology.
Chase817 macrumors member Original poster Jul 6, 2008 95 0 Nov 5, 2008 #6 Encryptic said: There's actually a company that specializes in this. http://apploop.com/ I've never used it personally, but it's a cool technology. Click to expand... I tried that, but you have to be partners. i haven't recieved an invite
Encryptic said: There's actually a company that specializes in this. http://apploop.com/ I've never used it personally, but it's a cool technology. Click to expand... I tried that, but you have to be partners. i haven't recieved an invite
J jnic macrumors 6502a Oct 24, 2008 567 0 Cambridge Nov 6, 2008 #7 Chase817 said: ok, I made it, but is there a way to load stories in an inbuilt browser (uiwebview) instead of safari? Click to expand... Code: NSString *url = @"http://www.example.com/"; [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]]; Docs: https://developer.apple.com/iphone/...ence/UIWebView_Class/Reference/Reference.html
Chase817 said: ok, I made it, but is there a way to load stories in an inbuilt browser (uiwebview) instead of safari? Click to expand... Code: NSString *url = @"http://www.example.com/"; [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]]; Docs: https://developer.apple.com/iphone/...ence/UIWebView_Class/Reference/Reference.html